summaryrefslogtreecommitdiff
path: root/builtin/stash.c
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2021-02-23 22:11:32 +0100
committerJunio C Hamano <gitster@pobox.com>2021-02-23 13:30:45 -0800
commitb865734760c2f677d625a1d939071844048051e4 (patch)
tree9ee9012f195003309f9b1a6343e95607fabe5f05 /builtin/stash.c
parent59ec22464f6c2b170b05f287e00740ea2288fe5c (diff)
downloadgit-b865734760c2f677d625a1d939071844048051e4.tar.gz
replace "parameters" by "arguments" in error messages
When an error message informs the user about an incorrect command invocation, it should refer to "arguments", not "parameters". Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/stash.c')
-rw-r--r--builtin/stash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stash.c b/builtin/stash.c
index 9bc85f91cd..60813d70d3 100644
--- a/builtin/stash.c
+++ b/builtin/stash.c
@@ -222,7 +222,7 @@ static int clear_stash(int argc, const char **argv, const char *prefix)
PARSE_OPT_STOP_AT_NON_OPTION);
if (argc)
- return error(_("git stash clear with parameters is "
+ return error(_("git stash clear with arguments is "
"unimplemented"));
return do_clear_stash();