mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-14 15:07:08 +00:00
fix 2 typos in chapter 12
This commit is contained in:
parent
a3369cf34a
commit
348b44ebf8
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ If you have this text:
|
|||
hello hello friend
|
||||
```
|
||||
|
||||
Running `/hello$` will match anything because "friend" is the last term in that line, not "hello".
|
||||
Running `/hello$` will not match anything because "friend" is the last term in that line, not "hello".
|
||||
|
||||
# Repeating Search
|
||||
|
||||
|
@ -216,7 +216,7 @@ Let's start with a basic usage. If you have this text:
|
|||
vim is good
|
||||
```
|
||||
|
||||
Let's substitute "good" with "awesome" because Vim is awesome. Run `:s/good/awesome/.` You should see:
|
||||
Let's substitute "good" with "awesome" because Vim is awesome. Run `:s/good/awesome/`. You should see:
|
||||
|
||||
```
|
||||
vim is awesome
|
||||
|
|
Loading…
Reference in a new issue