1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00

config.c: fix misspelt "occurred" in an error message

Signed-off-by: Peter Colberg <peter@colberg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Peter Colberg 2016-06-10 15:05:26 -04:00 committed by Junio C Hamano
parent dc72b5006f
commit 3a39f61e04

View File

@ -1278,7 +1278,7 @@ static void git_config_raw(config_fn_t fn, void *data)
* something went really wrong and we should stop
* immediately.
*/
die(_("unknown error occured while reading the configuration files"));
die(_("unknown error occurred while reading the configuration files"));
}
static void configset_iter(struct config_set *cs, config_fn_t fn, void *data)