summaryrefslogtreecommitdiff
path: root/builtin/grep.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-08-20 19:32:55 +0700
committerJunio C Hamano <gitster@pobox.com>2012-08-22 12:02:28 -0700
commitf63cf8c9fbcd86e8ca3bb78917dc280747bb34a8 (patch)
treee6640fdfc517e5359ae03ba92d2ceb6e262405ec /builtin/grep.c
parentb0ff96547ec66979487707ad71f89c23f5e0669d (diff)
downloadgit-f63cf8c9fbcd86e8ca3bb78917dc280747bb34a8.tar.gz
Use imperative form in help usage to describe an action
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/grep.c')
-rw-r--r--builtin/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/grep.c b/builtin/grep.c
index d73841c65a..c9a65b372a 100644
--- a/builtin/grep.c
+++ b/builtin/grep.c
@@ -682,7 +682,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
OPT_BOOLEAN(0, "cached", &cached,
N_("search in index instead of in the work tree")),
OPT_NEGBIT(0, "no-index", &use_index,
- N_("finds in contents not managed by git"), 1),
+ N_("find in contents not managed by git"), 1),
OPT_BOOLEAN(0, "untracked", &untracked,
N_("search in both tracked and untracked files")),
OPT_SET_INT(0, "exclude-standard", &opt_exclude,