Skip to content

Commit 6fcf044

Browse files
committed
Merge pull request liammclennan#20 from jayturley/patch-2
Update topics/about_functions_and_closure.js
2 parents ee443d0 + 8be2f5a commit 6fcf044

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

topics/about_functions_and_closure.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
module("About Functions And Closure (topics/about_functions_and_closure.js)");
32

43
test("defining functions directly", function() {
@@ -43,7 +42,7 @@ test("arguments array", function() {
4342
};
4443

4544
equals(add(1,2,3,4,5), 15, "add 1,2,3,4,5");
46-
equals(add(4,7,-2), 9, "add 1,2,3,4,5");
45+
equals(add(4,7,-2), 9, "add 4,7,-2");
4746
});
4847

4948
test("using call to invoke function",function(){

0 commit comments

Comments
 (0)