aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-09-21 14:23:14 -0700
committerJunio C Hamano <gitster@pobox.com>2022-09-21 14:23:14 -0700
commitdd37e5607f27cfc9bf9b39d9117db29a6d02ff1c (patch)
tree47a3e15c95cb6e427201dfa9acd1ebd836f45265
parentMerge branch 'tz/tech-docs-to-help-fix' (diff)
parenthelp: fix doubled words in explanation for developer interfaces (diff)
downloadgit-dd37e5607f27cfc9bf9b39d9117db29a6d02ff1c.tar.gz
git-dd37e5607f27cfc9bf9b39d9117db29a6d02ff1c.zip
Merge branch 'fz/help-doublofix'
Typofix for topic already in -rc0. * fz/help-doublofix: help: fix doubled words in explanation for developer interfaces
-rw-r--r--help.c2
-rwxr-xr-xt/t0012-help.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/help.c b/help.c
index ec670d5f68..d04542d826 100644
--- 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 }
};
diff --git a/t/t0012-help.sh b/t/t0012-help.sh
index 4ed2f242eb..dbfc5c8267 100755
--- a/t/t0012-help.sh
+++ b/t/t0012-help.sh
@@ -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
'