Merge pull request #6415 from erictleung/fix/extra-spacing-in-editor

Remove unnecessary spaces in the editor
pull/18182/head
Arsen Melikyan 2016-01-25 11:11:25 +04:00
commit 2c8952f9b3
1 changed files with 6 additions and 6 deletions

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