Skip to content

Commit

Permalink
MINOR: fixing documentation strings
Browse files Browse the repository at this point in the history
  • Loading branch information
spekulatius authored and guumaster committed Mar 30, 2020
1 parent 0809885 commit b4230a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/disable.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var disableCmd = &cobra.Command{
Short: "Disable a profile from your hosts file.",
Long: `
Disable a profile from your hosts file without removing it.
It will be listed as "off" while it is disabled.
It will be listed as "off" while it is disabled.
`,
PreRunE: func(cmd *cobra.Command, args []string) error {
profile, _ := cmd.Flags().GetString("profile")
Expand Down
4 changes: 2 additions & 2 deletions cmd/enable.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ var enableCmd = &cobra.Command{
Use: "enable",
Short: "Enable a profile on your hosts file.",
Long: `
Disable an existing profile from your hosts file without removing it.
It will be listed as "on" while it is enabled.
Enables an existing profile.
It will be listed as "on" while it is enabled.
`,
PreRunE: func(cmd *cobra.Command, args []string) error {
profile, _ := cmd.Flags().GetString("profile")
Expand Down

0 comments on commit b4230a5

Please sign in to comment.