diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index fa59afe650..048a99f311 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -992,7 +992,7 @@ "title": "Sift through Text with Regular Expressions", "difficulty":"9.984", "description":[ - "Regular expressions are way to find certain words or patterns inside of strings.", + "Regular expressions are used to find certain words or patterns inside of strings.", "For example, if we wanted to find the number of times the word the occurred in the string The dog chased the cat, we could use the following regular expression: \/the+\/gi", "Let's break this down a bit:", "the is the pattern we want to match.",