diff --git a/guide/english/git/git-checkout/index.md b/guide/english/git/git-checkout/index.md
index f1ec375daa..49cd75daee 100644
--- a/guide/english/git/git-checkout/index.md
+++ b/guide/english/git/git-checkout/index.md
@@ -23,7 +23,7 @@ git checkout BRANCH-NAME
Generally, Git won't let you checkout another branch unless your working directory is clean, because you would lose any working directory changes that aren't committed. You have three options to handle your changes: 1) trash them, 2) commit them, or 3) stash them.
### Checkout a New Branch
-To create and checkout out a new branch with a single command, you can use:
+To create and checkout a new branch with a single command, you can use:
```shell
git checkout -b NEW-BRANCH-NAME
```