Remove unnecessary spaces in the editor

This commit is contained in:
Eric Leung
2016-01-24 01:37:59 -08:00
parent 1abb328e5d
commit 09085a04a9

View File

@ -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);"
],