Remove Unnecessary Left Over Semicolon

Remove left over semicolon from function that was converted from an anonymous function at https://github.com/FreeCodeCamp/FreeCodeCamp/issues/3287
This commit is contained in:
Mike
2015-09-30 02:40:21 -04:00
parent 303d4db21d
commit 44e43000c2

View File

@ -686,7 +686,7 @@
"", "",
"function ourFunction(a, b) {", "function ourFunction(a, b) {",
" return a - b;", " return a - b;",
"};", "}",
"", "",
"// Create a function called myFunction that returns the value of a plus b.", "// Create a function called myFunction that returns the value of a plus b.",
"// Only change code below this line.", "// Only change code below this line.",