diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-04-19 21:37:18 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-04-19 21:37:18 -0700 |
commit | 52d77af463ce7be79f777ec7c8bf8adc632a0be2 (patch) | |
tree | 20b56baebde2314331b4704d22ae223ed69293af /builtin | |
parent | 34130cc06b478d824cc428c33796f620dd0c7424 (diff) | |
parent | 9af7ec30cbd4b4ce9e071cd0d54297101f98b426 (diff) | |
download | git-52d77af463ce7be79f777ec7c8bf8adc632a0be2.tar.gz |
Merge branch 'bw/submodule-is-active'
Error message fix.
* bw/submodule-is-active:
submodule--helper: fix typo in is_active error message
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/submodule--helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c index 6ee962207c..36e4231821 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -1189,7 +1189,7 @@ static int absorb_git_dirs(int argc, const char **argv, const char *prefix) static int is_active(int argc, const char **argv, const char *prefix) { if (argc != 2) - die("submodule--helper is-active takes exactly 1 arguments"); + die("submodule--helper is-active takes exactly 1 argument"); gitmodules_config(); |