]> git.ipfire.org Git - thirdparty/git.git/commitdiff
help: fix doubled words in explanation for developer interfaces
authorFangyi Zhou <me@fangyi.io>
Fri, 16 Sep 2022 13:05:29 +0000 (13:05 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 16 Sep 2022 16:20:11 +0000 (09:20 -0700)
Signed-off-by: Fangyi Zhou <me@fangyi.io>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
help.c
t/t0012-help.sh

diff --git a/help.c b/help.c
index ec670d5f68bd6aa701209dd587b28711ef7b0d8f..d04542d8261dd4e8eb2287edc3623492b34f3ce4 100644 (file)
--- a/help.c
+++ b/help.c
@@ -39,7 +39,7 @@ static struct category_description main_categories[] = {
        { CAT_synchingrepositories, N_("Low-level Commands / Syncing Repositories") },
        { CAT_purehelpers, N_("Low-level Commands / Internal Helpers") },
        { CAT_userinterfaces, N_("User-facing repository, command and file interfaces") },
-       { CAT_developerinterfaces, N_("Developer-facing file file formats, protocols and interfaces") },
+       { CAT_developerinterfaces, N_("Developer-facing file formats, protocols and other interfaces") },
        { 0, NULL }
 };
 
index 4ed2f242eb246b05e82527d16f7203ec2d163af9..dbfc5c826764bca4ec5561b603d8016f7d50f20d 100755 (executable)
@@ -231,7 +231,7 @@ test_expect_success "'git help -a' section spacing" '
 
        User-facing repository, command and file interfaces
 
-       Developer-facing file file formats, protocols and interfaces
+       Developer-facing file formats, protocols and other interfaces
        EOF
        test_cmp expect actual
 '