Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
fix(challenges): fixed a typo in Data structures challege
Browse files Browse the repository at this point in the history
fixed typo in data structures: create and add to sets in ES6

ISSUES CLOSED: freeCodeCamp/freeCodeCamp#17786
  • Loading branch information
gforce2k5 authored and scissorsneedfoodtoo committed Jul 9, 2018
1 parent 9329543 commit a4f810e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions challenges/08-coding-interview-prep/data-structures.json
Original file line number Diff line number Diff line change
Expand Up @@ -993,8 +993,8 @@
],
"tests": [
{
"text": "Your <code>Set</code> should only contains the values <code>1, 2, 3, Taco, Cat, Awesome</code>.",
"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 <code>Set</code> should only contains the values <code>1, 2, 3, Taco, Cat, Awesome</code>.');"
"text": "Your <code>Set</code> should only contain the values <code>1, 2, 3, Taco, Cat, Awesome</code>.",
"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 <code>Set</code> should only contain the values <code>1, 2, 3, Taco, Cat, Awesome</code>.');"
}
],
"releasedOn": "Feb 17, 2017",
Expand Down

0 comments on commit a4f810e

Please sign in to comment.