From b9436914b311f8db66e40186627463f937f6c952 Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Fri, 25 Dec 2015 02:57:04 +0530 Subject: [PATCH] Convert Celsius to Fahrenheit --- .../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 aa711c8097..4e0a06ef50 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -778,7 +778,7 @@ "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 Tc representing a temperature in Celsius. Create a variable Tf and apply the algorithm to assign it the corrasponding temperature in Fahrenheit." + "You are given a variable Tc representing a temperature in Celsius. Create a variable Tf and apply the algorithm to assign it the corresponding temperature in Fahrenheit." ], "releasedOn": "11/27/2015", "tests": [ @@ -792,7 +792,7 @@ "challengeSeed": [ "function convert(Tc) {", " // Only change code below this line", - "", + " ", "", " // Only change code above this line", " if(typeof Tf !== 'undefined') {",