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) {", "function myTest(val) {",
" var result = \"\";", " var result = \"\";",
" // Only change code below this line", " // Only change code below this line",
"", " ",
" if (val > 5) {", " if (val > 5) {",
" result = \"Bigger than 5\";", " result = \"Bigger than 5\";",
" }", " }",
@ -2594,7 +2594,7 @@
" // Only change code above this line", " // Only change code above this line",
" return result;", " return result;",
"}", "}",
" ", "",
"// Change this value to test", "// Change this value to test",
"myTest(4);", "myTest(4);",
"" ""
@ -2636,7 +2636,7 @@
" ", " ",
" return \"Between 5 and 10\";", " return \"Between 5 and 10\";",
"}", "}",
" ", "",
"// Change this value to test", "// Change this value to test",
"myTest(7);", "myTest(7);",
"" ""
@ -2682,7 +2682,7 @@
" return \"Greater than or equal to 10\";", " return \"Greater than or equal to 10\";",
" }", " }",
"}", "}",
" ", "",
"// Change this value to test", "// Change this value to test",
"myTest(7);" "myTest(7);"
], ],