Skip to content

Commit

Permalink
Fix inconsistent usage example in the help message
Browse files Browse the repository at this point in the history
In the 'Examples' section of the help message, the third usage
example is inconsistent with its description.

    timebox 12      run a 10 minute time box

While the usage example shows how to run a 12 minute time box,
the description mentions that this runs a 10 minute time box.
Correct this usage example to the following.

    timebox 10      run a 10 minute time box

Since this usage message is present in the project README file,
make the same correction in the README file too.
  • Loading branch information
susam committed Jul 9, 2013
1 parent 212480e commit cd36ed9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Usage
Examples:
timebox run a 30 minute time box
timebox 15 run a 15 minute time box
timebox 12 run a 10 minute time box
timebox 10 run a 10 minute time box

Report bugs to <susam@susam.in>.

Expand Down
2 changes: 1 addition & 1 deletion timebox.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ rem OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
echo Examples:
echo %NAME% run a %DD% minute time box
echo %NAME% 15 run a 15 minute time box
echo %NAME% 12 run a 10 minute time box
echo %NAME% 10 run a 10 minute time box
echo.
echo Report bugs to ^<susam@susam.in^>.
if %MODE% == Explorer (
Expand Down

0 comments on commit cd36ed9

Please sign in to comment.