From a4f810e845a9441a3712813c76b40da60c4c7e7f Mon Sep 17 00:00:00 2001 From: Guy Even Date: Thu, 5 Jul 2018 15:27:46 +0300 Subject: [PATCH] fix(challenges): fixed a typo in Data structures challege fixed typo in data structures: create and add to sets in ES6 ISSUES CLOSED: freeCodeCamp/freeCodeCamp#17786 --- challenges/08-coding-interview-prep/data-structures.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/08-coding-interview-prep/data-structures.json b/challenges/08-coding-interview-prep/data-structures.json index 651099d5f..80d6e735c 100644 --- a/challenges/08-coding-interview-prep/data-structures.json +++ b/challenges/08-coding-interview-prep/data-structures.json @@ -993,8 +993,8 @@ ], "tests": [ { - "text": "Your Set should only contains the values 1, 2, 3, Taco, Cat, Awesome.", - "testString": "assert(function(){var test = checkSet(); return (test.size == 6) && test.has(1) && test.has(2) && test.has(3) && test.has('Taco') && test.has('Cat') && test.has('Awesome');}, 'Your Set should only contains the values 1, 2, 3, Taco, Cat, Awesome.');" + "text": "Your Set should only contain the values 1, 2, 3, Taco, Cat, Awesome.", + "testString": "assert(function(){var test = checkSet(); return (test.size == 6) && test.has(1) && test.has(2) && test.has(3) && test.has('Taco') && test.has('Cat') && test.has('Awesome');}, 'Your Set should only contain the values 1, 2, 3, Taco, Cat, Awesome.');" } ], "releasedOn": "Feb 17, 2017",