Update ch07_the_dot_command.md

fixed a typo
This commit is contained in:
Jia Jia 2021-09-07 15:40:24 +08:00 committed by GitHub
parent 4b2743a0f0
commit 44c45d637c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,7 +56,7 @@ potatoes
fruit-juice
```
Lets add a comma at the end of each line. Starting at the first line, do `A,<Esc>j`. By now, you realize that `j` does not cause a change. The change here is only `A,`. You can move and repeat the change with `j . j .`. The full command is `A,<Esc>j.j.`.
Let's add a comma at the end of each line. Starting at the first line, do `A,<Esc>j`. By now, you realize that `j` does not cause a change. The change here is only `A,`. You can move and repeat the change with `j . j .`. The full command is `A,<Esc>j.j.`.
Every action from the moment you press the insert command operator (`A`) until you exit the insert command (`<Esc>`) is considered as a change.