summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorLibravatar Jean-Noël Avila <jn.avila@free.fr>2018-08-23 23:00:56 +0200
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-08-23 14:29:12 -0700
commit27c929edd6cccfbbedf2fbb8a3175bc7e01bf6c7 (patch)
tree24d0d60243c9bc4e152c4fdda6a7c5011f06a7b2 /sequencer.c
parentMerge branch 'nd/pack-deltify-regression-fix' (diff)
downloadtgif-27c929edd6cccfbbedf2fbb8a3175bc7e01bf6c7.tar.xz
i18n: fix mistakes in translated strings
Fix typos and convert a question which does not expect to be replied to a simple advice. Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index 65d371c746..84bf598c3e 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -720,7 +720,7 @@ static const char *read_author_ident(struct strbuf *buf)
/* dequote values and construct ident line in-place */
for (in = buf->buf; i < 3 && in - buf->buf < buf->len; i++) {
if (!skip_prefix(in, keys[i], (const char **)&in)) {
- warning(_("could not parse '%s' (looking for '%s'"),
+ warning(_("could not parse '%s' (looking for '%s')"),
rebase_path_author_script(), keys[i]);
return NULL;
}