Skip to content

Commit bc1c600

Browse files
committed
Merge branch 'ah/reflog-typofix-in-error'
Error string fix. * ah/reflog-typofix-in-error: reflog: add missing single quote to error message
2 parents 0b20a46 + 99885bc commit bc1c600

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builtin/reflog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ static int parse_expire_cfg_value(const char *var, const char *value, unsigned l
429429
if (!value)
430430
return config_error_nonbool(var);
431431
if (parse_expiry_date(value, expire))
432-
return error(_("%s' for '%s' is not a valid timestamp"),
432+
return error(_("'%s' for '%s' is not a valid timestamp"),
433433
value, var);
434434
return 0;
435435
}

0 commit comments

Comments
 (0)