From 815f460fd8592e8d09b32a288aeac7325a493b17 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 --- 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 242d633459..ebbe234111 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -681,7 +681,7 @@ "var a = 4;", "var b = 5;", "", - "ourFunction = function() {", + "function ourFunction(a, b) {", " return a - b;", "};", "",