diff --git a/9-regular-expressions/01-regexp-introduction/article.md b/9-regular-expressions/01-regexp-introduction/article.md index e69528c5..57fe02f5 100644 --- a/9-regular-expressions/01-regexp-introduction/article.md +++ b/9-regular-expressions/01-regexp-introduction/article.md @@ -77,7 +77,7 @@ alert( "

".search(regexp)); Regular expressions may have flags that affect the search. -There are only 5 of them in JavaScript: +There are only 6 of them in JavaScript: `i` : With this flag the search is case-insensitive: no difference between `A` and `a` (see the example below).