From b093d23f1fc015ffcdcf6969967a2a7b63d0c7d4 Mon Sep 17 00:00:00 2001 From: Louis-Claude Canon Date: Tue, 12 Jun 2012 16:44:14 -0400 Subject: [PATCH] Typos - Fix various typos in comments and documentation. Signed-off-by: Paul Beckingham --- scripts/bash/task.sh | 2 +- scripts/zsh/_task | 2 +- src/legacy.cpp | 2 +- src/util.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/bash/task.sh b/scripts/bash/task.sh index 98a23d374..e1db4d079 100644 --- a/scripts/bash/task.sh +++ b/scripts/bash/task.sh @@ -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 # diff --git a/scripts/zsh/_task b/scripts/zsh/_task index f28a1a615..7f67f0d66 100644 --- a/scripts/zsh/_task +++ b/scripts/zsh/_task @@ -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' diff --git a/src/legacy.cpp b/src/legacy.cpp index 88227ac09..0b970a1e5 100644 --- a/src/legacy.cpp +++ b/src/legacy.cpp @@ -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") diff --git a/src/util.cpp b/src/util.cpp index d24f61c47..e3024be41 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -200,7 +200,7 @@ int autoComplete ( const std::string& partial, const std::vector& list, std::vector& matches, - int minimum/* = 2*/) + int minimum/* = 1*/) { matches.clear ();