summaryrefslogtreecommitdiff
path: root/parse-options.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-08-14 01:07:12 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-08-14 16:33:37 (GMT)
commit4279000d3e11a374a0a28d8284ca2774bd842c75 (patch)
treea7338cfc1b62f99b5f41697a4ac59fc0c23bd5f6 /parse-options.h
parent47ae905ffb98cc4d4fd90083da6bc8dab55d9ecc (diff)
downloadgit-4279000d3e11a374a0a28d8284ca2774bd842c75.zip
git-4279000d3e11a374a0a28d8284ca2774bd842c75.tar.gz
git-4279000d3e11a374a0a28d8284ca2774bd842c75.tar.bz2
messages: avoid SHA-1 in end-user facing messages
There are still a handful mentions of SHA-1 when we meant the (hexadecimal) object names in end-user facing messages. Rewrite them. I was hoping that this can mostly be s/SHA-1/object name/, but a few messages needed rephrasing to keep the result readable. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'parse-options.h')
-rw-r--r--parse-options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-options.h b/parse-options.h
index 46af942..7030d8f 100644
--- a/parse-options.h
+++ b/parse-options.h
@@ -314,7 +314,7 @@ int parse_opt_passthru_argv(const struct option *, const char *, int);
#define OPT__FORCE(var, h, f) OPT_COUNTUP_F('f', "force", (var), (h), (f))
#define OPT__ABBREV(var) \
{ OPTION_CALLBACK, 0, "abbrev", (var), N_("n"), \
- N_("use <n> digits to display SHA-1s"), \
+ N_("use <n> digits to display object names"), \
PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 }
#define OPT__COLOR(var, h) \
OPT_COLOR_FLAG(0, "color", (var), (h))