consistent casing

This commit is contained in:
2021-04-28 10:54:30 +02:00
parent c1795b2acc
commit 37b26dfc31
4 changed files with 4 additions and 5 deletions

View File

@@ -31,6 +31,6 @@ var forgetCmd = &cobra.Command{
func init() {
rootCmd.AddCommand(forgetCmd)
internal.AddFlagsToCommand(forgetCmd, false)
forgetCmd.Flags().Bool("prune", false, "Also prune repository")
forgetCmd.Flags().Bool("dry-run", false, "Do not write changes, show what would be affected")
forgetCmd.Flags().Bool("prune", false, "also prune repository")
forgetCmd.Flags().Bool("dry-run", false, "do not write changes, show what would be affected")
}