From ab94743da8d009483a7e5290142e1f76407e0940 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 30 Oct 2017 03:45:47 +0300 Subject: [PATCH] Update task.md --- .../09-call-apply-decorators/01-spy-decorator/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/task.md b/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/task.md index e4a30cb8..9ebb7abf 100644 --- a/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/task.md +++ b/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/task.md @@ -22,7 +22,7 @@ work = spy(work); work(1, 2); // 3 work(4, 5); // 9 -for(let args of work.calls) { +for (let args of work.calls) { alert( 'call:' + args.join() ); // "call:1,2", "call:4,5" } ```