Skip to content

Commit

Permalink
Minor tweaks to the recent changes. Updated Readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephPecoraro committed Jan 16, 2010
1 parent e8dfe8d commit bbfad26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -47,7 +47,7 @@ List your tasks (or use `pomo` which defaults to `pomo list`):
0. Fix IE stying issues : 25 minutes
1. Destroy IE : 25 minutes

Start the first task:
Start the first incomplete task:
$ pomo start
Started Fix IE stying issues, you have 25 minutes :)
(=........................) 24 minutes remaining
Expand Down
2 changes: 1 addition & 1 deletion bin/pomo
Expand Up @@ -51,7 +51,7 @@ command :start do |c|
c.example 'Start the first task', 'pomo start first'
c.example 'Start the fifth task', 'pomo start 5'
c.action do |args, options|
args = ['incomplete'] if args.length.zero?
args = ['incomplete'] if args.empty?
list.find(*args) do |task, i|
abort 'task already completed' if task.complete?
say "Started #{task}, you have #{task.length} minutes :)"
Expand Down

0 comments on commit bbfad26

Please sign in to comment.