diff options
author | Stefan Beller <sbeller@google.com> | 2017-04-13 15:08:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-04-13 18:05:23 -0700 |
commit | 9af7ec30cbd4b4ce9e071cd0d54297101f98b426 (patch) | |
tree | cb02af7f88fbf59ffd1a422e3e101ed6ab752323 /builtin | |
parent | submodule add: respect submodule.active and submodule.<name>.active (diff) | |
download | tgif-9af7ec30cbd4b4ce9e071cd0d54297101f98b426.tar.xz |
submodule--helper: fix typo in is_active error message
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 7700d89488..404cef77d9 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -1163,7 +1163,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(); |