aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-07-08 13:15:00 -0700
committerJunio C Hamano <gitster@pobox.com>2021-07-08 13:15:00 -0700
commit9f8aa6089af5ee5cdd85e25f4985a376d3ad78a9 (patch)
treee05a37bb4e14ebb7efd79ed599d0ce65fd52137e
parent102969c42261f3ff8597771f4da8416f048667b6 (diff)
parent98538307876ab9565c24d45bce6b5302f99fec0b (diff)
downloadgit-9f8aa6089af5ee5cdd85e25f4985a376d3ad78a9.tar.xz
Merge branch 'ah/graph-typofix'
Typofix in an error message. * ah/graph-typofix: graph: improve grammar of "invalid color" error message
-rw-r--r--graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/graph.c b/graph.c
index c128ad0cce..e3828eb8f2 100644
--- a/graph.c
+++ b/graph.c
@@ -95,7 +95,7 @@ static void parse_graph_colors_config(struct strvec *colors, const char *string)
if (!color_parse_mem(start, comma - start, color))
strvec_push(colors, color);
else
- warning(_("ignore invalid color '%.*s' in log.graphColors"),
+ warning(_("ignored invalid color '%.*s' in log.graphColors"),
(int)(comma - start), start);
start = comma + 1;
}