From 09085a04a9e816d2837a85399a4aa182235df7c8 Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Sun, 24 Jan 2016 01:37:59 -0800 Subject: [PATCH] Remove unnecessary spaces in the editor --- .../basic-javascript.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 1f7bf1eb9e..3c46ce89ab 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -2582,7 +2582,7 @@ "function myTest(val) {", " var result = \"\";", " // Only change code below this line", - "", + " ", " if (val > 5) {", " result = \"Bigger than 5\";", " }", @@ -2590,11 +2590,11 @@ " if (val <= 5) {", " result = \"5 or Smaller\";", " }", - " ", + " ", " // Only change code above this line", " return result;", "}", - " ", + "", "// Change this value to test", "myTest(4);", "" @@ -2633,10 +2633,10 @@ " if (val < 5) {", " return \"Smaller than 5\";", " }", - " ", + " ", " return \"Between 5 and 10\";", "}", - " ", + "", "// Change this value to test", "myTest(7);", "" @@ -2682,7 +2682,7 @@ " return \"Greater than or equal to 10\";", " }", "}", - " ", + "", "// Change this value to test", "myTest(7);" ],