]> git.ipfire.org Git - thirdparty/git.git/commitdiff
difftool: fix word spacing in the usage strings
authorBagas Sanjaya <bagasdotme@gmail.com>
Tue, 21 Sep 2021 11:17:13 +0000 (18:17 +0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 23 Sep 2021 00:09:02 +0000 (17:09 -0700)
Remove spaces in `non - zero` and add a space between the diff
format/mode and option parentheses in difftool's usage strings.

Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/difftool.c

index 6a9242a80329559eda808b169b4522cae7f95469..ad9187761eecfb9e5d696574d8a66d2e3bed4110 100644 (file)
@@ -410,9 +410,9 @@ static int run_dir_diff(const char *extcmd, int symlinks, const char *prefix,
                const char *src_path, *dst_path;
 
                if (starts_with(info.buf, "::"))
-                       die(N_("combined diff formats('-c' and '--cc') are "
+                       die(N_("combined diff formats ('-c' and '--cc') are "
                               "not supported in\n"
-                              "directory diff mode('-d' and '--dir-diff')."));
+                              "directory diff mode ('-d' and '--dir-diff')."));
 
                if (parse_index_info(info.buf, &lmode, &rmode, &loid, &roid,
                                     &status))
@@ -713,7 +713,7 @@ int cmd_difftool(int argc, const char **argv, const char *prefix)
                            "`--tool`")),
                OPT_BOOL(0, "trust-exit-code", &trust_exit_code,
                         N_("make 'git-difftool' exit when an invoked diff "
-                           "tool returns a non - zero exit code")),
+                           "tool returns a non-zero exit code")),
                OPT_STRING('x', "extcmd", &extcmd, N_("command"),
                           N_("specify a custom command for viewing diffs")),
                OPT_ARGUMENT("no-index", &no_index, N_("passed to `diff`")),