From b5735c128d53fd58f217f74208bb51ce1610310e Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 27 Jun 2019 16:01:46 -0400 Subject: [PATCH] Fix English --- 9-regular-expressions/08-regexp-greedy-and-lazy/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/08-regexp-greedy-and-lazy/article.md b/9-regular-expressions/08-regexp-greedy-and-lazy/article.md index 149e08ec..1147f0ec 100644 --- a/9-regular-expressions/08-regexp-greedy-and-lazy/article.md +++ b/9-regular-expressions/08-regexp-greedy-and-lazy/article.md @@ -56,7 +56,7 @@ These common words do not make it obvious why the regexp fails, so let's elabora 3. Then the dot repeats because of the quantifier `pattern:.+`. The regular expression engine builds the match by taking characters one by one while it is possible. - ...When it becomes impossible? All characters match the dot, so it only stops when it reaches the end of the string: + ...When does it become impossible? All characters match the dot, so it only stops when it reaches the end of the string: ![](witch_greedy3.png)