range-diff: update stale summary of --no-dual-color
275267937b (range-diff: make dual-color the default mode, 2018-08-13) replaced --dual-color with --no-dual-color but left the option's summary untouched. Rewrite the summary to describe --no-dual-color rather than dual-color. Helped-by: Jonathan Nieder <jrnieder@gmail.com> Helped-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Kyle Meyer <kyle@kyleam.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Kyle Meyer committed
Aug 23, 2018 at 17:57 UTC
72f47be2db295ec32f6d47107c11386e477ed89c
1 file changed
+1
-1
builtin/range-diff.c
+1
-1
@@ -25,7 +25,7 @@ int cmd_range_diff(int argc, const char **argv, const char *prefix)
25
OPT_INTEGER(0, "creation-factor", &creation_factor,
26
N_("Percentage by which creation is weighted")),
27
OPT_BOOL(0, "no-dual-color", &simple_color,
28
- N_("color both diff and diff-between-diffs")),
28
+ N_("use simple diff colors")),
29
OPT_END()
30
};
31
int i, j, res = 0;