From 5c704207e554c051c69d3d1c7b0bf3173967f6ec Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Wed, 23 Mar 2016 20:48:37 -0500 Subject: [PATCH] Clarify Drop It instructions on using 2nd argument --- .../intermediate-bonfires.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json index 12977a899e..258e6c9bba 100644 --- a/challenges/01-front-end-development-certification/intermediate-bonfires.json +++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json @@ -684,7 +684,8 @@ "id": "a5deed1811a43193f9f1c841", "title": "Drop it", "description": [ - "Drop the elements of an array (first argument), starting from the front, until the predicate (second argument) returns true.", + "Drop the elements of an array (first argument), starting from the front, until the predicate (second argument) returns true.", + "The second argument, func, is a function you'll use to test the first elements of the array to decide if you should drop it or not.", "Return the rest of the array, otherwise return an empty array.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ],