From 23c35fa79c37a02ecae22f2f6c754787567f92e9 Mon Sep 17 00:00:00 2001 From: Vladimir <43414511+Ayashiihito@users.noreply.github.com> Date: Tue, 6 Nov 2018 11:30:37 +0300 Subject: [PATCH] fixed typo in 08-regexp-greedy-and-lazy --- 5-regular-expressions/08-regexp-greedy-and-lazy/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-regular-expressions/08-regexp-greedy-and-lazy/article.md b/5-regular-expressions/08-regexp-greedy-and-lazy/article.md index 44a32062..71040821 100644 --- a/5-regular-expressions/08-regexp-greedy-and-lazy/article.md +++ b/5-regular-expressions/08-regexp-greedy-and-lazy/article.md @@ -173,7 +173,7 @@ Complex regular expressions are hard to optimize, so the search may work exactly ## Alternative approach -With regexps, there's often more then one way to do the same thing. +With regexps, there's often more than one way to do the same thing. In our case we can find quoted strings without lazy mode using the regexp `pattern:"[^"]+"`: