diff --git a/nap/data/seed/challenges/basic-bonfires.json b/nap/data/seed/challenges/basic-bonfires.json index c96ef89..767b1e8 100644 --- a/nap/data/seed/challenges/basic-bonfires.json +++ b/nap/data/seed/challenges/basic-bonfires.json @@ -563,12 +563,12 @@ }, { "id": "adf08ec01beb4f99fc7a68f2", - "name": "Bonfire: Falsey Bouncer", - "dashedName": "bonfire-falsey-bouncer", + "name": "Bonfire: Falsy Bouncer", + "dashedName": "bonfire-falsy-bouncer", "difficulty": "1.50", "description": [ - "Remove all falsey values from an array.", - "Falsey values in javascript are false, null, 0, \"\", undefined, and NaN.", + "Remove all falsy values from an array.", + "Falsy values in javascript are false, null, 0, \"\", undefined, and NaN.", "Remember to use [RSAP](//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck) if you get stuck. Try to pair program. Write your own code." ], "challengeSeed": [ @@ -580,9 +580,9 @@ "bouncer([7, 'ate', '', false, 9]);" ], "tests": [ - "assert.deepEqual(bouncer([7, 'ate', '', false, 9]), [7, 'ate', 9], 'should remove falsey values');", - "assert.deepEqual(bouncer(['a', 'b', 'c']), ['a', 'b', 'c'], 'should return full array if no falsey elements');", - "assert.deepEqual(bouncer([false, null, 0]), [], 'should return empty array if all elements are falsey');" + "assert.deepEqual(bouncer([7, 'ate', '', false, 9]), [7, 'ate', 9], 'should remove falsy values');", + "assert.deepEqual(bouncer(['a', 'b', 'c']), ['a', 'b', 'c'], 'should return full array if no falsy elements');", + "assert.deepEqual(bouncer([false, null, 0]), [], 'should return empty array if all elements are falsy');" ], "MDNlinks": [ "Boolean Objects", @@ -1526,4 +1526,4 @@ "descriptionPt": [] } ] -} \ No newline at end of file +}