From 3d351581701c6b2fda86c872bd6f0a68bd015225 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 12 Jul 2014 19:28:38 -0700 Subject: [PATCH] command: update synopsis to be better --- command/graph.go | 2 +- command/plan.go | 2 +- command/refresh.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/command/graph.go b/command/graph.go index 42d59a2a64..791f074f6c 100644 --- a/command/graph.go +++ b/command/graph.go @@ -84,5 +84,5 @@ Usage: terraform graph [options] PATH } func (c *GraphCommand) Synopsis() string { - return "Output visual graph of Terraform resources" + return "Create a visual graph of Terraform resources" } diff --git a/command/plan.go b/command/plan.go index c6115a923c..88ae709099 100644 --- a/command/plan.go +++ b/command/plan.go @@ -171,7 +171,7 @@ Options: } func (c *PlanCommand) Synopsis() string { - return "Show changes between Terraform config and infrastructure" + return "Generate and show an execution plan" } const planHeaderNoOutput = ` diff --git a/command/refresh.go b/command/refresh.go index 54c9ac3200..137aadb1c4 100644 --- a/command/refresh.go +++ b/command/refresh.go @@ -132,5 +132,5 @@ Options: } func (c *RefreshCommand) Synopsis() string { - return "Refresh the local state of your infrastructure" + return "Update local state file against real resources" }