From 54fc1ca3d3af7b51d3d51a5f17bb5ea3e5684b58 Mon Sep 17 00:00:00 2001 From: nishant-tomer Date: Sun, 15 May 2016 21:55:09 +0530 Subject: [PATCH] Remove typo from instructions of challenge - Profile Lookup --- .../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 a38b331660..52301ef90c 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -4887,7 +4887,7 @@ "title": "Profile Lookup", "description": [ "We have an array of objects representing different people in our contacts lists.", - "A lookUp function that takes firstName and a property (prop) as arguments has been pre-written for you.", + "A lookUpProfile function that takes firstName and a property (prop) as arguments has been pre-written for you.", "The function should check if firstName is an actual contact's firstName and the given property (prop) is a property of that contact.", "If both are true, then return the \"value\" of that property.", "If firstName does not correspond to any contacts then return \"No such contact\"",