diff options
author | Johannes Sixt <j6t@kdbg.org> | 2021-02-23 22:11:32 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-02-23 13:30:45 -0800 |
commit | b865734760c2f677d625a1d939071844048051e4 (patch) | |
tree | 9ee9012f195003309f9b1a6343e95607fabe5f05 /builtin/stash.c | |
parent | Merge branch 'tb/ci-run-cocci-with-18.04' into maint (diff) | |
download | tgif-b865734760c2f677d625a1d939071844048051e4.tar.xz |
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.c | 2 |
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(); |