- Fix various typos in comments and documentation.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Louis-Claude Canon 2012-06-12 16:44:14 -04:00 committed by Paul Beckingham
parent bfba1c725d
commit b093d23f1f
4 changed files with 4 additions and 4 deletions

View file

@ -34,7 +34,7 @@
#
# To use these routines:
#
# 1) Copy this file to somewhere (e.g. ~/.bash_completion.d/.task.sh).
# 1) Copy this file to somewhere (e.g. ~/.bash_completion.d/task.sh).
# 2) Added the following line to your .bashrc:
# source ~/.bash_completion.d/task.sh
#

View file

@ -159,7 +159,7 @@ _regex_words -t ':' default 'task attributes' \
'wa*it:Date until task becomes pending:$task_dates' \
're*cur:Recurrence frequency:$task_freqs' \
'pri*ority:priority:$task_priorities' \
'un*til:Recurrence end date:$task_dates' \
'un*til:Expiration date:$task_dates' \
'fg:Foreground color' \
'bg:Background color' \
'li*mit:Desired number of rows in report'

View file

@ -146,7 +146,7 @@ std::string legacyCheckForDeprecatedVariables ()
it->first.substr (it->first.length () - 6) == ".limit")
deprecated.push_back (it->first);
// report.*.annotaitons
// report.*.annotations
if (it->first.length () > 19 &&
it->first.substr (0, 7) == "report." &&
it->first.substr (it->first.length () - 12) == ".annotations")

View file

@ -200,7 +200,7 @@ int autoComplete (
const std::string& partial,
const std::vector<std::string>& list,
std::vector<std::string>& matches,
int minimum/* = 2*/)
int minimum/* = 1*/)
{
matches.clear ();