From 69aaf57e0e48d205a97ec6f4a2f05af26804796a Mon Sep 17 00:00:00 2001 From: Jess Uni <41285428+jessuni@users.noreply.github.com> Date: Tue, 26 Mar 2019 20:59:52 +0900 Subject: [PATCH] Fix typos --- 5-regular-expressions/04-regexp-escaping/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-regular-expressions/04-regexp-escaping/article.md b/5-regular-expressions/04-regexp-escaping/article.md index 63fce1f5..48f4a810 100644 --- a/5-regular-expressions/04-regexp-escaping/article.md +++ b/5-regular-expressions/04-regexp-escaping/article.md @@ -43,7 +43,7 @@ Here's what a search for a slash `'/'` looks like: alert( "/".match(/\//) ); // '/' ``` -From the other hand, if we're not using `/.../`, but create a regexp using `new RegExp`, then we no need to escape it: +On the other hand, if we're not using `/.../`, but create a regexp using `new RegExp`, then we don't need to escape it: ```js run alert( "/".match(new RegExp("/")) ); // '/'