Skip to content

Commit

Permalink
cmd: Fix help text indentation, punctuation, repeated lines
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoe committed Mar 23, 2021
1 parent 7784c59 commit f05c8e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions cmd/archive.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ func init() {
ultralist archive gc
ultralist ar gc
ultralist archive gc
ultralist ar gc
Run garbage collection. Delete all archived todos and reclaim ids
See the full docs here:
https://ultralist.io/docs/cli/managing_tasks`
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/edit.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func init() {
To edit a status
ultralist edit 33 status:next
To remove a status:
To remove a status:
ultralist edit 33 status:none`
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func init() {
ultralist list group:p
List all todos grouped by status:
ultralist list group:s
ultralist list group:s
Combining filters:
------------------
Expand Down Expand Up @@ -153,6 +153,6 @@ See the full docs at https://ultralist.io/docs/cli/showing_tasks`
rootCmd.AddCommand(listCmd)
listCmd.Flags().BoolVarP(&unicodeSupport, "unicode", "", true, "Allows unicode support in Ultralist output")
listCmd.Flags().BoolVarP(&colorSupport, "color", "", true, "Allows color in Ultralist output")
listCmd.Flags().BoolVarP(&listNotes, "notes", "", false, "Show a todo's notes when listing. ")
listCmd.Flags().BoolVarP(&listNotes, "notes", "", false, "Show a todo's notes when listing")
listCmd.Flags().BoolVarP(&showStatus, "status", "", false, "Show a todo's status")
}

0 comments on commit f05c8e4

Please sign in to comment.