Skip to content

Commit f1a90ac

Browse files
authored
Merge pull request #283 from usernamehw/patch-25
Update task.md
2 parents a1a0060 + ab94743 commit f1a90ac

File tree

1 file changed

+1
-1
lines changed
  • 1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ work = spy(work);
2222
work(1, 2); // 3
2323
work(4, 5); // 9
2424

25-
for(let args of work.calls) {
25+
for (let args of work.calls) {
2626
alert( 'call:' + args.join() ); // "call:1,2", "call:4,5"
2727
}
2828
```

0 commit comments

Comments
 (0)