From 04ce7283ad159f7583be52449b7b6e989157a54c Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Thu, 10 Dec 2020 20:42:09 +0200 Subject: [PATCH] Fix typo in 9.16 (Sticky flag "y"...) --- 9-regular-expressions/16-regexp-sticky/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/16-regexp-sticky/article.md b/9-regular-expressions/16-regexp-sticky/article.md index 373f3453..ece2c960 100644 --- a/9-regular-expressions/16-regexp-sticky/article.md +++ b/9-regular-expressions/16-regexp-sticky/article.md @@ -93,7 +93,7 @@ The result is correct. ...But wait, not so fast. -Please note: the `regexp.exec` call start searching at position `lastIndex` and then goes further. If there's no word at position `lastIndex`, but it's somewhere after it, then it will be found: +Please note: the `regexp.exec` call starts searching at position `lastIndex` and then goes further. If there's no word at position `lastIndex`, but it's somewhere after it, then it will be found: ```js run let str = 'let varName = "value"';