diff options
author | Peter Colberg <peter@colberg.org> | 2016-06-10 15:05:26 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-06-10 14:53:39 -0700 |
commit | 3a39f61e0468d7aea1a6f57ddbdcc74aaafa8410 (patch) | |
tree | 552abd9ae96708e89a9d29a4842d1824523804dd /config.c | |
parent | dc72b5006f29e98e8a394a3bcc14c7a03ffbcd5e (diff) | |
download | git-3a39f61e0468d7aea1a6f57ddbdcc74aaafa8410.tar.gz git-3a39f61e0468d7aea1a6f57ddbdcc74aaafa8410.tar.xz |
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>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |