From ab72094333652a867a8b55c6cd42b08fbb23c1d8 Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 30 Sep 2015 02:40:21 -0400 Subject: [PATCH] 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 --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 13c28c2021..80ff4839bf 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -686,7 +686,7 @@ "", "function ourFunction(a, b) {", " return a - b;", - "};", + "}", "", "// Create a function called myFunction that returns the value of a plus b.", "// Only change code below this line.",