From: Kyle Meyer Date: Thu, 23 Aug 2018 21:57:48 +0000 (-0400) Subject: range-diff: update stale summary of --no-dual-color X-Git-Tag: v2.19.0-rc1~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72f47be2db295ec32f6d47107c11386e477ed89c;p=thirdparty%2Fgit.git 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 Helped-by: Johannes Schindelin Signed-off-by: Kyle Meyer Signed-off-by: Junio C Hamano --- diff --git a/builtin/range-diff.c b/builtin/range-diff.c index f52d45d9d6..0aa9bed41f 100644 --- a/builtin/range-diff.c +++ b/builtin/range-diff.c @@ -25,7 +25,7 @@ int cmd_range_diff(int argc, const char **argv, const char *prefix) OPT_INTEGER(0, "creation-factor", &creation_factor, N_("Percentage by which creation is weighted")), OPT_BOOL(0, "no-dual-color", &simple_color, - N_("color both diff and diff-between-diffs")), + N_("use simple diff colors")), OPT_END() }; int i, j, res = 0;