From 095af8b6f644378db7bc87a39972df5cf376fd3b Mon Sep 17 00:00:00 2001 From: Khristinin Nikita Date: Sun, 21 Jan 2018 09:06:20 +0200 Subject: [PATCH] Fix misspeling user.format - not exist in the code bellow. Probably you mean `worker.slow` --- 1-js/06-advanced-functions/09-call-apply-decorators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/09-call-apply-decorators/article.md b/1-js/06-advanced-functions/09-call-apply-decorators/article.md index 01845e48..d2e3a1e3 100644 --- a/1-js/06-advanced-functions/09-call-apply-decorators/article.md +++ b/1-js/06-advanced-functions/09-call-apply-decorators/article.md @@ -70,7 +70,7 @@ To summarize, there are several benefits of using a separate `cachingDecorator` The caching decorator mentioned above is not suited to work with object methods. -For instance, in the code below `user.format()` stops working after the decoration: +For instance, in the code below `worker.slow()` stops working after the decoration: ```js run // we'll make worker.slow caching