From db5a80bbe31c409177817d3e702a2bf3114e01c9 Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 22 Jun 2017 15:57:26 +0300 Subject: [PATCH] Update article.md --- 5-regular-expressions/12-regexp-anchors/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-regular-expressions/12-regexp-anchors/article.md b/5-regular-expressions/12-regexp-anchors/article.md index a1b4ff8b..b4ae67cf 100644 --- a/5-regular-expressions/12-regexp-anchors/article.md +++ b/5-regular-expressions/12-regexp-anchors/article.md @@ -4,7 +4,7 @@ The caret `pattern:'^'` and dollar `pattern:'$'` characters have special meaning [cut] -The caret `pattern:^` matches at the end of the text, and the dollar `pattern:$` -- in the end. +The caret `pattern:^` matches at the beginning of the text, and the dollar `pattern:$` -- in the end. For instance, let's test if the text starts with `Mary`: