From f4ca23a6e0491df2681f3e72d05aa8f0ea8a37b3 Mon Sep 17 00:00:00 2001 From: Ivan Paulin Date: Fri, 18 Jan 2019 23:10:08 +0100 Subject: [PATCH] Fix word in text (#27801) Change "occurences" to "occurrences". --- guide/english/vim/search-and-replace/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/vim/search-and-replace/index.md b/guide/english/vim/search-and-replace/index.md index bbc207fe94..b046956f23 100644 --- a/guide/english/vim/search-and-replace/index.md +++ b/guide/english/vim/search-and-replace/index.md @@ -20,7 +20,7 @@ where... - `[range]` indicates the lines to search (e.g. `1`: first line, `$`: last line, `%`: all lines). - `[pattern]` is the text pattern to be searched. - `[string]` is the string that will replace the text pattern. -- `[flags]` turn on additional search and replace options (e.g. `c`: confirm substitution, `g`: replace all occurences in each line, `i`: ignore case). +- `[flags]` turn on additional search and replace options (e.g. `c`: confirm substitution, `g`: replace all occurrences in each line, `i`: ignore case). - `[count]` replaces in `[count]` lines starting from the last line in `[range]` (or current line if `[range]` omitted). ### Common Examples