diff --git a/5-regular-expressions/01-regexp-introduction/article.md b/5-regular-expressions/01-regexp-introduction/article.md index cc50ba8e..571beecb 100644 --- a/5-regular-expressions/01-regexp-introduction/article.md +++ b/5-regular-expressions/01-regexp-introduction/article.md @@ -94,7 +94,7 @@ There are only 5 of them in JavaScript: : With this flag the search looks for all matches, without it -- only the first one (we'll see uses in the next chapter). `m` -: Multiline mode (covered in the chapter ). +: Multiline mode (covered in the chapter ). `s` : "Dotall" mode, allows `.` to match newlines (covered in the chapter ).