diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-04-22 12:50:44 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-22 08:00:47 -0700 |
commit | e495afcd74ae703db9b396cd46ffc0da368e3905 (patch) | |
tree | 36991d8bbd7c7990fba8a6f3d4923b393cc52401 | |
parent | 46b2a46dd90f60b99faba8ee7c49c88cb58e0d8a (diff) | |
download | git-e495afcd74ae703db9b396cd46ffc0da368e3905.tar.gz git-e495afcd74ae703db9b396cd46ffc0da368e3905.tar.xz |
builtin/log.c: make usage string consistent with doc
Replace '<since>..<until>' with '<revision range>', in accordance with
the documentation.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/log.c b/builtin/log.c index 8f0b2e84f..4398abf3a 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -36,7 +36,7 @@ static const char *fmt_patch_subject_prefix = "PATCH"; static const char *fmt_pretty; static const char * const builtin_log_usage[] = { - N_("git log [<options>] [<since>..<until>] [[--] <path>...]\n") + N_("git log [<options>] [<revision range>] [[--] <path>...]\n") N_(" or: git show [options] <object>..."), NULL }; |