From 46bea1d64743cca02716aaef55b7838a4a7b203f Mon Sep 17 00:00:00 2001 From: BoDonkey Date: Thu, 19 May 2016 19:08:36 -0400 Subject: [PATCH] Alters the Celsius to Fahrenheit challenge to eliminate the initial error massage --- .../basic-javascript.json | 3 ++- 1 file changed, 2 insertions(+), 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 85e893a2546..bd60f16acc6 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -865,12 +865,13 @@ "description": [ "To test your learning, you will create a solution \"from scratch\". Place your code between the indicated lines and it will be tested against multiple test cases.", "The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.", - "You are given a variable celsius representing a temperature in Celsius. Create a variable fahrenheit and apply the algorithm to assign it the corresponding temperature in Fahrenheit.", + "You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and apply the algorithm to assign it the corresponding temperature in Fahrenheit.", "Note
Don't worry too much about the function and return statements as they will be covered in future challenges. For now, only use operators that you have already learned." ], "releasedOn": "January 1, 2016", "challengeSeed": [ "function convertToF(celsius) {", + " var fahrenheit;", " // Only change code below this line", " ", " ",