Skip to content

Commit 583b705

Browse files
committed
fix: tomorrow typo
1 parent a559a87 commit 583b705

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ First, you need run `gh todo init`. It will create `todo` repo in your GitHub ac
3535

3636
Then you can use `gh todo add` to add new task. It will create an issue with today(yyyy-MM-dd) as the title in `todo` repo.
3737

38-
You can specify the issue title with `--scope`. The default is today(yyyy-MM-dd). Current support [yesterday, tommorow, week, month, year]. Any other will be used directly as issue title.
38+
You can specify the issue title with `--scope`. The default is today(yyyy-MM-dd). Current support [yesterday, tomorrow, week, month, year]. Any other will be used directly as issue title.
3939

4040
The `gh todo` or `gh todo list` where show todo list.
4141

gh-todo

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ Options:
1919
--version Show version
2020
--help Show help for command
2121
--scope TODO scope, default: today(yyyy-MM-dd).
22-
Support [yesterday, tommorow, weekly, monthly, yearly].
22+
Support [yesterday, tomorrow, weekly, monthly, yearly].
2323
Any other will be used directly as issue title.
2424
Examples:
2525
gh todo add abc
2626
EOF
2727
}
2828

29-
version="0.4.0"
29+
version="0.4.1"
3030

3131
repo="$(gh config get -h github.com user)/todo"
3232

@@ -61,7 +61,7 @@ get_issue_id() {
6161
yesterday)
6262
issue_title=$(date -v-1d +"%Y-%m-%d")
6363
;;
64-
tommorow)
64+
tomorrow)
6565
issue_title=$(date -v+1d +"%Y-%m-%d")
6666
;;
6767
week)

0 commit comments

Comments
 (0)