From 96e071687be1805f9a4bc04a0786747e4e763d24 Mon Sep 17 00:00:00 2001 From: Joel Bentley Date: Sun, 13 Sep 2015 14:04:52 -0400 Subject: [PATCH] Modify sample function in code to match form of sample function in description --- 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 242d633459..ebbe234111 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -681,7 +681,7 @@ "var a = 4;", "var b = 5;", "", - "ourFunction = function() {", + "function ourFunction(a, b) {", " return a - b;", "};", "",