diff options
| author | Fangyi Zhou <me@fangyi.io> | 2022-09-16 13:05:29 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-09-16 09:20:11 -0700 |
| commit | 225e815ef238d6033c7f78160274b96de7b197f9 (patch) | |
| tree | 55c1381307718ed49288c3346e6dcc3454babac7 | |
| parent | Git 2.38-rc0 (diff) | |
| download | git-225e815ef238d6033c7f78160274b96de7b197f9.tar.gz git-225e815ef238d6033c7f78160274b96de7b197f9.zip | |
help: fix doubled words in explanation for developer interfaces
Signed-off-by: Fangyi Zhou <me@fangyi.io>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | help.c | 2 | ||||
| -rwxr-xr-x | t/t0012-help.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 ' |
