diff mbox series

builtin/worktree.c: Fix typo in "forgot fetch" msg

Message ID 20230811233940.30264-1-jacobabel@nullpo.dev (mailing list archive)
State Accepted
Commit fdc9914c28355a09a55725b2cd1798446b76d615
Headers show
Series builtin/worktree.c: Fix typo in "forgot fetch" msg | expand

Commit Message

Jacob Abel Aug. 11, 2023, 11:39 p.m. UTC
Replace misspelled word "overide" with correctly spelled "override".

Reported-By: Teng Long <dyroneteng@gmail.com>
Signed-off-by: Jacob Abel <jacobabel@nullpo.dev>
---
This patch fixes a typo identified in [1]. 

Luckily the text that contained this typo didn't interact with any other
behavior and the change didn't require any modifications to the test
code so it was a very quick, easy fix.

1. https://lore.kernel.org/git/20230809064724.13032-1-tenglong.tl@alibaba-inc.com/

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


base-commit: fac96dfbb1c24369ba7d37a5affd8adfe6c650fd

Comments

Junio C Hamano Aug. 13, 2023, 10:21 p.m. UTC | #1
Jacob Abel <jacobabel@nullpo.dev> writes:

> Replace misspelled word "overide" with correctly spelled "override".
>
> Reported-By: Teng Long <dyroneteng@gmail.com>
> Signed-off-by: Jacob Abel <jacobabel@nullpo.dev>
> ---
> This patch fixes a typo identified in [1]. 
>
> Luckily the text that contained this typo didn't interact with any other
> behavior and the change didn't require any modifications to the test
> code so it was a very quick, easy fix.

True, but l10n folks need to be given sufficient time to react, so
let's postpone it til immediately after the upcoming release.

Thanks.

> 1. https://lore.kernel.org/git/20230809064724.13032-1-tenglong.tl@alibaba-inc.com/
>
>  builtin/worktree.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/builtin/worktree.c b/builtin/worktree.c
> index 4cd01842de..10db70b7ec 100644
> --- a/builtin/worktree.c
> +++ b/builtin/worktree.c
> @@ -696,7 +696,7 @@ static int can_use_remote_refs(const struct add_opts *opts)
>  		return 1;
>  	} else if (!opts->force && remote_get(NULL)) {
>  		die(_("No local or remote refs exist despite at least one remote\n"
> -		      "present, stopping; use 'add -f' to overide or fetch a remote first"));
> +		      "present, stopping; use 'add -f' to override or fetch a remote first"));
>  	}
>  	return 0;
>  }
>
> base-commit: fac96dfbb1c24369ba7d37a5affd8adfe6c650fd
diff mbox series

Patch

diff --git a/builtin/worktree.c b/builtin/worktree.c
index 4cd01842de..10db70b7ec 100644
--- a/builtin/worktree.c
+++ b/builtin/worktree.c
@@ -696,7 +696,7 @@  static int can_use_remote_refs(const struct add_opts *opts)
 		return 1;
 	} else if (!opts->force && remote_get(NULL)) {
 		die(_("No local or remote refs exist despite at least one remote\n"
-		      "present, stopping; use 'add -f' to overide or fetch a remote first"));
+		      "present, stopping; use 'add -f' to override or fetch a remote first"));
 	}
 	return 0;
 }