diff options
author | Jean-Noel Avila <jn.avila@free.fr> | 2017-10-08 14:18:39 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-09 18:59:01 +0900 |
commit | dfab1eac2362dfcac7c96a43c3938d8ec67d7722 (patch) | |
tree | 8569de35b621d36a066803b74f74ebda9b7dd177 | |
parent | c44a4c650c66eb7b8d50c57fd4e1bff1add7bf77 (diff) | |
download | git-dfab1eac2362dfcac7c96a43c3938d8ec67d7722.tar.gz |
i18n: add a missing space in message
The message spans over 2 lines but the C conconcatenation does not add
the needed space between the two lines.
Signed-off-by: Jean-Noel Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | sequencer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c index c54596f969..b7e0a3864c 100644 --- a/sequencer.c +++ b/sequencer.c @@ -2536,7 +2536,7 @@ static enum check_level get_missing_commit_check_level(void) return CHECK_WARN; if (!strcasecmp("error", value)) return CHECK_ERROR; - warning(_("unrecognized setting %s for option" + warning(_("unrecognized setting %s for option " "rebase.missingCommitsCheck. Ignoring."), value); return CHECK_IGNORE; } |