From 78523fe71c0af5f849fc03abe1db73ef6df9efaf Mon Sep 17 00:00:00 2001 From: "Dr. Paul Kenneth Shreeman" Date: Wed, 30 Dec 2015 16:49:41 -0600 Subject: [PATCH] Squashing three commits... Made a minor adjustment in instruction to prevent confusion regards to variable use of item Added more clarifications Clarification Phase 2 --- .../basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index c1505e3792..4f7297bd92 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/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 item at 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." ], "releasedOn": "January 1, 2016", "head": [ @@ -5141,4 +5141,4 @@ "isBeta": "true" } ] -} \ No newline at end of file +}