From 0ab01fc7d1b6576e58f65b1fad76e0d14db958d1 Mon Sep 17 00:00:00 2001 From: Jonathan Wong <18wongj@gmail.com> Date: Wed, 22 Jun 2016 09:09:18 -0400 Subject: [PATCH] Fix/rewrite-instructions (#8944) Clarify Where Do I Belong to return positive val --- .../01-front-end-development-certification/basic-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-bonfires.json b/seed/challenges/01-front-end-development-certification/basic-bonfires.json index 6c3d8e13b4..006cd80bdc 100644 --- a/seed/challenges/01-front-end-development-certification/basic-bonfires.json +++ b/seed/challenges/01-front-end-development-certification/basic-bonfires.json @@ -651,7 +651,7 @@ "id": "a24c1a4622e3c05097f71d67", "title": "Where do I belong", "description": [ - "Return the lowest index at which a value (second argument) should be inserted into an array (first argument) once it has been sorted.", + "Return the lowest index at which a value (second argument) should be inserted into an array (first argument) once it has been sorted. The returned value should be a number.", "For example, getIndexToIns([1,2,3,4], 1.5) should return 1 because it is greater than 1 (index 0), but less than 2 (index 1).", "Likewise, getIndexToIns([20,3,5], 19) should return 2 because once the array has been sorted it will look like [3,5,20] and 19 is less than 20 (index 2) and greater than 5 (index 1).", "Remember to use Read-Search-Ask if you get stuck. Write your own code."