From 68172cc9c4a7275d1614fbc4e9e7907760674045 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Thu, 10 Jun 2021 00:00:57 -0300 Subject: [PATCH] typo --- 9-regular-expressions/07-regexp-escaping/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/07-regexp-escaping/article.md b/9-regular-expressions/07-regexp-escaping/article.md index eed76791..3a4640b4 100644 --- a/9-regular-expressions/07-regexp-escaping/article.md +++ b/9-regular-expressions/07-regexp-escaping/article.md @@ -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