Remove incorrect punctuation and newline in help text

This commit is contained in:
joeduffy 2018-01-27 09:40:05 -08:00
parent bd4cd2fda9
commit e7b1fc1aac
2 changed files with 2 additions and 2 deletions

View file

@ -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" +

View file

@ -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" +