From d8ddf1080a4c8f0ad58ba01996799216fe960361 Mon Sep 17 00:00:00 2001 From: Nitis Monburinon Date: Sat, 13 Jan 2018 16:01:00 +0700 Subject: [PATCH] Fix 2.3.1 The Star "\s*cat\s*" expression 2.3.1 The Star "\s*cat\s*" should match The fat "cat" sat on the con"cat"enation. not The fat "cat" sat on the "concatenation". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de9ac4f..f89d1cc 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ followed by lowercase character `a`, followed by lowercase character `t`, followed by zero or more spaces.
-"\s*cat\s*" => The fat cat sat on the concatenation.
+"\s*cat\s*" => The fat cat sat on the concatenation.
 
[Test the regular expression](https://regex101.com/r/gGrwuz/1)