From ac304bd59c64d7185e312ce9fa9e3dbdf017c7d4 Mon Sep 17 00:00:00 2001 From: terakilobyte Date: Tue, 26 May 2015 00:07:10 -0400 Subject: [PATCH] Fix grammatical error in Mutations instructions --- seed_data/challenges/basic-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/challenges/basic-bonfires.json b/seed_data/challenges/basic-bonfires.json index 0e5ca681cc..907fc7af9b 100644 --- a/seed_data/challenges/basic-bonfires.json +++ b/seed_data/challenges/basic-bonfires.json @@ -349,7 +349,7 @@ "name": "Bonfire: Mutations", "difficulty": "1.12", "description": [ - "Return true if the string in the first element of the array contains the all of the letters of the string in the second element of the array.", + "Return true if the string in the first element of the array contains all of the letters of the string in the second element of the array.", "For example, ['hello', 'Hello'], should return true because all of the letters in the second string are present in the first, ignoring case.", "The arguments ['hello', 'hey'] should return false because the string 'hello' does not contain a 'y'.", "Another example, ['Alien', 'line'], should return true because all of the letters in 'line' are present in 'Alien'.",