From 44e43000c2902500a8dd568abdf89dbbfcdb2d03 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 --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index 13c28c2021..80ff4839bf 100644 --- a/challenges/basic-javascript.json +++ b/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.",