From e7b1fc1aacf69cc454ea1a1367f85e5931bab8d9 Mon Sep 17 00:00:00 2001 From: joeduffy Date: Sat, 27 Jan 2018 09:40:05 -0800 Subject: [PATCH] Remove incorrect punctuation and newline in help text --- cmd/stack_export.go | 2 +- cmd/stack_import.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/stack_export.go b/cmd/stack_export.go index 5a122de4f..17e8cd076 100644 --- a/cmd/stack_export.go +++ b/cmd/stack_export.go @@ -16,7 +16,7 @@ func newStackExportCmd() *cobra.Command { return &cobra.Command{ Use: "export", Args: cmdutil.MaximumNArgs(0), - Short: "Export a stack's deployment to standard out.\n", + Short: "Export a stack's deployment to standard out", Long: "Export a stack's deployment to standard out.\n" + "\n" + "The deployment can then be hand-edited and used to update the stack via\n" + diff --git a/cmd/stack_import.go b/cmd/stack_import.go index d5c592fc1..f6affbfb6 100644 --- a/cmd/stack_import.go +++ b/cmd/stack_import.go @@ -17,7 +17,7 @@ func newStackImportCmd() *cobra.Command { return &cobra.Command{ Use: "import", Args: cmdutil.MaximumNArgs(0), - Short: "Import a deployment from standard in into an existing stack.\n", + Short: "Import a deployment from standard in into an existing stack", Long: "Import a deployment from standard in into an existing stack.\n" + "\n" + "A deployment that was exported from a stack using `pulumi stack export` and\n" +