diff mbox series

builtin/rebase: remove a redundant space in l10n string

Message ID pull.1277.git.git.1655399939066.gitgitgadget@gmail.com (mailing list archive)
State Accepted
Commit 3b9a5a33c2986522736d484da497ccd99d715220
Headers show
Series builtin/rebase: remove a redundant space in l10n string | expand

Commit Message

Fangyi Zhou June 16, 2022, 5:18 p.m. UTC
From: Fangyi Zhou <me@fangyi.io>

Found in l10n.

Signed-off-by: Fangyi Zhou <me@fangyi.io>
---
    builtin/rebase: remove a redundant space in l10n string
    
    Found in l10n.
    
    Signed-off-by: Fangyi Zhou me@fangyi.io

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1277%2Ffangyi-zhou%2Ffix-rebase-extra-space-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1277/fangyi-zhou/fix-rebase-extra-space-v1
Pull-Request: https://github.com/git/git/pull/1277

 builtin/rebase.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: 4f6db706e6ad145a9bf6b26a1ca0970bed27bb72

Comments

Junio C Hamano June 16, 2022, 6:15 p.m. UTC | #1
"Fangyi Zhou via GitGitGadget" <gitgitgadget@gmail.com> writes:

> From: Fangyi Zhou <me@fangyi.io>
>
> Found in l10n.
>
> Signed-off-by: Fangyi Zhou <me@fangyi.io>

Thanks.

> -			"Note: Your `pull.rebase` configuration may also be  set to 'preserve',\n"
> +			"Note: Your `pull.rebase` configuration may also be set to 'preserve',\n"
Philip Oakley June 17, 2022, 7:09 a.m. UTC | #2
On 16/06/2022 19:15, Junio C Hamano wrote:
> "Fangyi Zhou via GitGitGadget" <gitgitgadget@gmail.com> writes:
>
>> From: Fangyi Zhou <me@fangyi.io>
>>
>> Found in l10n.
>>
>> Signed-off-by: Fangyi Zhou <me@fangyi.io>
> Thanks.
>
>> -			"Note: Your `pull.rebase` configuration may also be  set to 'preserve',\n"
>> +			"Note: Your `pull.rebase` configuration may also be set to 'preserve',\n"
That was my error. Sorry for not being able to respond at the time.
--
Philip
diff mbox series

Patch

diff --git a/builtin/rebase.c b/builtin/rebase.c
index 640b6046a5a..70aa7c842f3 100644
--- a/builtin/rebase.c
+++ b/builtin/rebase.c
@@ -1206,7 +1206,7 @@  int cmd_rebase(int argc, const char **argv, const char *prefix)
 
 	if (preserve_merges_selected)
 		die(_("--preserve-merges was replaced by --rebase-merges\n"
-			"Note: Your `pull.rebase` configuration may also be  set to 'preserve',\n"
+			"Note: Your `pull.rebase` configuration may also be set to 'preserve',\n"
 			"which is no longer supported; use 'merges' instead"));
 
 	if (action != ACTION_NONE && total_argc != 2) {