From b865734760c2f677d625a1d939071844048051e4 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Tue, 23 Feb 2021 22:11:32 +0100 Subject: 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 Signed-off-by: Junio C Hamano --- builtin/tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtin/tag.c') diff --git a/builtin/tag.c b/builtin/tag.c index 24d35b746d..c19198beb1 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -540,7 +540,7 @@ int cmd_tag(int argc, const char **argv, const char *prefix) object_ref = argc == 2 ? argv[1] : "HEAD"; if (argc > 2) - die(_("too many params")); + die(_("too many arguments")); if (get_oid(object_ref, &object)) die(_("Failed to resolve '%s' as a valid ref."), object_ref); -- cgit v1.2.3