Skip to content

Commit 54ff266

Browse files
authoredJun 13, 2021
Merge pull request #2623 from joaquinelio/patch-9
typo
2 parents 1ccd673 + 68172cc commit 54ff266

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/07-regexp-escaping

1 file changed

+1
-1
lines changed
 

‎9-regular-expressions/07-regexp-escaping/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The similar search in one of previous examples worked with `pattern:/\d\.\d/`, b
6565

6666
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.
6767

68-
Here's how "\d\.\d" is preceived:
68+
Here's how "\d\.\d" is perceived:
6969

7070
```js run
7171
alert("\d\.\d"); // d.d

0 commit comments

Comments
 (0)
Please sign in to comment.