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 | Merge branch 'va/i18n-perl-scripts' (diff) | |
parent | submodule--helper: fix typo in is_active error message (diff) | |
download | tgif-52d77af463ce7be79f777ec7c8bf8adc632a0be2.tar.xz |
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(); |