command: update synopsis to be better

This commit is contained in:
Mitchell Hashimoto 2014-07-12 19:28:38 -07:00
parent 8e100869a4
commit 3d35158170
3 changed files with 3 additions and 3 deletions

View File

@ -84,5 +84,5 @@ Usage: terraform graph [options] PATH
} }
func (c *GraphCommand) Synopsis() string { func (c *GraphCommand) Synopsis() string {
return "Output visual graph of Terraform resources" return "Create a visual graph of Terraform resources"
} }

View File

@ -171,7 +171,7 @@ Options:
} }
func (c *PlanCommand) Synopsis() string { func (c *PlanCommand) Synopsis() string {
return "Show changes between Terraform config and infrastructure" return "Generate and show an execution plan"
} }
const planHeaderNoOutput = ` const planHeaderNoOutput = `

View File

@ -132,5 +132,5 @@ Options:
} }
func (c *RefreshCommand) Synopsis() string { func (c *RefreshCommand) Synopsis() string {
return "Refresh the local state of your infrastructure" return "Update local state file against real resources"
} }