Fix incorrect escape characters in doc [skip ci]

This commit is contained in:
Milo Yip 2016-01-31 23:37:31 +08:00
parent a79d6895ed
commit 84a26e5d18

View File

@ -200,7 +200,7 @@ RapidJSON implemented a simple DFA regular expression engine, which is used by d
|`[^abc]` | Negated character classes
|`[^a-c]` | Negated character class range
|`[\b]` | Backspace (U+0008)
|``\|`, `\\`, ... | Escape characters
|`\|`, `\\`, ... | Escape characters
|`\f` | Form feed (U+000C)
|`\n` | Line feed (U+000A)
|`\r` | Carriage return (U+000D)