diff: fix mistake in translatable strings

Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jean-Noël Avila committed May 17, 2019 at 21:26 UTC 8bcd8f4cea9d819da690a545d65dd562409d633a
1 file changed +2 -2
diff.c
+2 -2
@@ -5453,13 +5453,13 @@ static void prep_parse_options(struct diff_options *options)
5453 N_("equivalent to --word-diff=color --word-diff-regex=<regex>"),
5454 PARSE_OPT_NONEG | PARSE_OPT_OPTARG, diff_opt_color_words),
5455 OPT_CALLBACK_F(0, "color-moved", options, N_("<mode>"),
5456 - N_("move lines of code are colored differently"),
5456 + N_("moved lines of code are colored differently"),
5457 PARSE_OPT_OPTARG, diff_opt_color_moved),
5458 OPT_CALLBACK_F(0, "color-moved-ws", options, N_("<mode>"),
5459 N_("how white spaces are ignored in --color-moved"),
5460 0, diff_opt_color_moved_ws),
5461
5462 - OPT_GROUP(N_("Diff other options")),
5462 + OPT_GROUP(N_("Other diff options")),
5463 OPT_CALLBACK_F(0, "relative", options, N_("<prefix>"),
5464 N_("when run from subdir, exclude changes outside and show relative paths"),
5465 PARSE_OPT_NONEG | PARSE_OPT_OPTARG,