diff options
author | 2018-08-23 17:57:48 -0400 | |
---|---|---|
committer | 2018-08-27 13:13:59 -0700 | |
commit | 72f47be2db295ec32f6d47107c11386e477ed89c (patch) | |
tree | d44b856104b54efbd6776705cf5ed523b7eabd94 /builtin | |
parent | range-diff: use dim/bold cues to improve dual color mode (diff) | |
download | tgif-72f47be2db295ec32f6d47107c11386e477ed89c.tar.xz |
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>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/range-diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |