diff options
| author | David Percy <davetp425@gmail.com> | 2019-12-03 14:36:02 -0500 |
|---|---|---|
| committer | David Percy <davetp425@gmail.com> | 2019-12-03 19:44:08 +0000 |
| commit | e8a7b0638820b8a89ec51a9f668c35c8cb965b82 (patch) | |
| tree | 9fcbffb9b6270ef4a339f0b28a81d7dfa529ae37 | |
| parent | 22428211f3ad4966df84a69b1a77af3a5d69e7dd (diff) | |
Typo: "escaped with a backspace" -> backslash
| -rw-r--r-- | doc/pages/regex.asciidoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/pages/regex.asciidoc b/doc/pages/regex.asciidoc index b03e580f..9ed8c469 100644 --- a/doc/pages/regex.asciidoc +++ b/doc/pages/regex.asciidoc @@ -10,7 +10,7 @@ Kakoune's regex always run on Unicode codepoint sequences, not on bytes. == Literals Every character except the syntax characters `\^$.*+?[]{}|().` match -themselves. Syntax characters can be escaped with a backspace so `\$` +themselves. Syntax characters can be escaped with a backslash so `\$` will match a literal `$` and `\\` will match a literal `\`. Some literals are available as escape sequences: |
