Skip to content

Commit

Permalink
fixes a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jain-anshu committed Oct 14, 2021
1 parent 5c81c6b commit ded089f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch05_moving_in_file.md
Expand Up @@ -73,7 +73,7 @@ ge Move backward to end of the previous word
gE Move backward to end of the previous WORD
```

So what are the similarities and differences between a word and a WORD? Both word and WORD are separated by non-blank characters. A word is a sequence of characters containing *only* `a-zA-Z0-9_`. A WORD is a sequence of all characters except white space (a white space means either space, tab, and EOL). To learn more, check out `:h word` and `:h WORD`.
So what are the similarities and differences between a word and a WORD? Both word and WORD are separated by blank characters. A word is a sequence of characters containing *only* `a-zA-Z0-9_`. A WORD is a sequence of all characters except white space (a white space means either space, tab, and EOL). To learn more, check out `:h word` and `:h WORD`.

For example, suppose you have:

Expand Down

0 comments on commit ded089f

Please sign in to comment.