diff --git a/5-regular-expressions/04-regexp-escaping/article.md b/5-regular-expressions/04-regexp-escaping/article.md index cb7a3eb1..11767c3d 100644 --- a/5-regular-expressions/04-regexp-escaping/article.md +++ b/5-regular-expressions/04-regexp-escaping/article.md @@ -30,7 +30,7 @@ alert( "function g()".match(/g\(\)/) ); // "g()" If we're looking for a backslash `\`, then we should double it: ```js run -alert( "1\2".match(/\\/) ); // '\' +alert( "1\\2".match(/\\/) ); // '\' ``` ## A slash