From 7c3df466bf8e5a7595bc0c65ba0ce8f8560a9324 Mon Sep 17 00:00:00 2001 From: overken Date: Mon, 1 Apr 2019 15:32:59 -0700 Subject: [PATCH] Update article.md typos --- 5-regular-expressions/01-regexp-introduction/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ).