Fix a small typo.

This commit is contained in:
Brendan Burns
2015-07-13 09:36:12 -07:00
parent bd70a1e220
commit 7620041ed4
3 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ func NewCmdPatch(f *cmdutil.Factory, out io.Writer) *cobra.Command {
cmdutil.CheckCustomErr("Patch failed", err)
},
}
cmd.Flags().StringP("patch", "p", "", "The patch to be appied to the resource JSON file.")
cmd.Flags().StringP("patch", "p", "", "The patch to be applied to the resource JSON file.")
cmd.MarkFlagRequired("patch")
return cmd
}