Add missing charachter

This commit is contained in:
Mohammad Rajabifard 2017-07-06 15:51:17 +04:30 committed by GitHub
parent edfb8248f1
commit 6432a5e4a9

View file

@ -97,7 +97,7 @@ In other words, all special characters are allowed except where they mean someth
A dot `"."` inside square brackets means just a dot. The pattern `pattern:[.,]` would look for one of characters: either a dot or a comma. A dot `"."` inside square brackets means just a dot. The pattern `pattern:[.,]` would look for one of characters: either a dot or a comma.
In the example below the regexp `pattern:[-().^+]` looks for one of the characters `-().^`: In the example below the regexp `pattern:[-().^+]` looks for one of the characters `-().^+`:
```js run ```js run
// No need to escape // No need to escape