From 6a81d5fcce85e563ee638ea8bdc942de194fd04f Mon Sep 17 00:00:00 2001 From: Rudra <23bit129@sot.pdpu.ac.in> Date: Thu, 11 Dec 2025 01:38:27 +0530 Subject: [PATCH] fix(curriculum): correct caret name (#64478) --- .../6733c5ba834ded4bb067e67c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-regular-expressions/6733c5ba834ded4bb067e67c.md b/curriculum/challenges/english/blocks/lecture-working-with-regular-expressions/6733c5ba834ded4bb067e67c.md index 3805582c232..a2738f1f94f 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-regular-expressions/6733c5ba834ded4bb067e67c.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-regular-expressions/6733c5ba834ded4bb067e67c.md @@ -143,7 +143,7 @@ Looking at this example, you can see how the state of the regular expression cha The global flag is great when you need to get multiple matches from a single string. But if you're testing multiple strings with the same regular expression it's best to leave the `g` flag off. -Before learning about the next flag, you need to learn about anchors. The carrot (`^`) anchor, at the beginning of the regular expression, says "match the start of the string": +Before learning about the next flag, you need to learn about anchors. The caret (`^`) anchor, at the beginning of the regular expression, says "match the start of the string": ```js const start = /^freecodecamp/i;