diff options
author | Jay Soffian <jaysoffian@gmail.com> | 2011-05-18 13:56:04 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-18 11:54:26 -0700 |
commit | f0f90e34b00e5401ef51f636b0735e17a9938e0a (patch) | |
tree | 904ce239d9187978ce971d71b9126a39a3c305ee /builtin | |
parent | b602ed7dea968d72c5b3f61ca016de7f285d80ef (diff) | |
download | git-f0f90e34b00e5401ef51f636b0735e17a9938e0a.tar.gz |
"git log -h": typofix misspelled 'suppress'
Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-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 f6219909a7..38c32c1cd1 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -92,7 +92,7 @@ static void cmd_log_init_finish(int argc, const char **argv, const char *prefix, int quiet = 0, source = 0; const struct option builtin_log_options[] = { - OPT_BOOLEAN(0, "quiet", &quiet, "supress diff output"), + OPT_BOOLEAN(0, "quiet", &quiet, "suppress diff output"), OPT_BOOLEAN(0, "source", &source, "show source"), { OPTION_CALLBACK, 0, "decorate", NULL, NULL, "decorate options", PARSE_OPT_OPTARG, decorate_callback}, |