diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-07-08 13:15:00 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-07-08 13:15:00 -0700 |
| commit | 9f8aa6089af5ee5cdd85e25f4985a376d3ad78a9 (patch) | |
| tree | e05a37bb4e14ebb7efd79ed599d0ce65fd52137e | |
| parent | 102969c42261f3ff8597771f4da8416f048667b6 (diff) | |
| parent | 98538307876ab9565c24d45bce6b5302f99fec0b (diff) | |
| download | git-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |
