From 2367c5be7a1fee9d6ec5891019f110c0f939ddab Mon Sep 17 00:00:00 2001 From: Brandon Eichler Date: Thu, 31 Dec 2015 20:41:16 -0600 Subject: [PATCH] Rephrase instructions on Waypoint: Stand in Line Instructions were unclear as to what the function should return. fixes #5655 --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 0db65f917d..2125059116 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2098,7 +2098,7 @@ "title": "Stand in Line", "description": [ "In Computer Science a queue is an abstract Data Structure where items are kept in order. New items can be added at the back of the queue and old items are taken off from the front of the queue.", - "Write a function queue which takes an \"array\" and an \"item\" as arguments. Add the item onto the end of the array, then remove and return the first element of the array." + "Write a function queue which takes an \"array\" and an \"item\" as arguments. Add the item onto the end of the array, then remove the first element of the array. The queue function should return the element that was removed." ], "releasedOn": "January 1, 2016", "head": [