This commit is contained in:
joaquinelio 2021-06-10 00:00:57 -03:00 committed by GitHub
parent 581802dad3
commit 68172cc9c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,7 @@ The similar search in one of previous examples worked with `pattern:/\d\.\d/`, b
The reason is that backslashes are "consumed" by a string. As we may recall, regular strings have their own special characters, such as `\n`, and a backslash is used for escaping.
Here's how "\d\.\d" is preceived:
Here's how "\d\.\d" is perceived:
```js run
alert("\d\.\d"); // d.d