From 3361599d3a318b5eb8564bb5f45581d13ce744e5 Mon Sep 17 00:00:00 2001 From: natac13 Date: Mon, 7 Sep 2015 13:09:51 -0400 Subject: [PATCH] fix mispelling of falsey to falsy closes #3149 --- seed/challenges/basic-bonfires.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/seed/challenges/basic-bonfires.json b/seed/challenges/basic-bonfires.json index d0bd24aa1c4..207cda2843c 100644 --- a/seed/challenges/basic-bonfires.json +++ b/seed/challenges/basic-bonfires.json @@ -531,11 +531,11 @@ }, { "id": "adf08ec01beb4f99fc7a68f2", - "title": "Falsey Bouncer", + "title": "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 Read-Search-Ask if you get stuck. Write your own code." ], "challengeSeed": [ @@ -547,9 +547,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",