Skip to content

Commit 13e8d62

Browse files
committed
Fix double word typo
1 parent 7b4505e commit 13e8d62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

topics/about_functions_and_closure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ test("using apply to invoke function",function(){
6767

6868
//similar to the call function is the apply function. Apply only has two
6969
//arguments: the first is the context that this should be set to in the called
70-
//function and and array of arguments to be passed into the called function.
70+
//function and the second is the array of arguments to be passed into the called function.
7171
var result = invokee.apply("I am this!", ["I am arg1","I am arg2"]);
7272

7373
equal(__, result, "what will the value of invokee's this be?");

0 commit comments

Comments
 (0)