Commit 84a26e5d authored by Milo Yip's avatar Milo Yip

Fix incorrect escape characters in doc [skip ci]

parent a79d6895
...@@ -200,7 +200,7 @@ RapidJSON implemented a simple DFA regular expression engine, which is used by d ...@@ -200,7 +200,7 @@ RapidJSON implemented a simple DFA regular expression engine, which is used by d
|`[^abc]` | Negated character classes |`[^abc]` | Negated character classes
|`[^a-c]` | Negated character class range |`[^a-c]` | Negated character class range
|`[\b]` | Backspace (U+0008) |`[\b]` | Backspace (U+0008)
|``\|`, `\\`, ... | Escape characters |`\|`, `\\`, ... | Escape characters
|`\f` | Form feed (U+000C) |`\f` | Form feed (U+000C)
|`\n` | Line feed (U+000A) |`\n` | Line feed (U+000A)
|`\r` | Carriage return (U+000D) |`\r` | Carriage return (U+000D)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment