From 81a250337dc429268131055d4c2c8ac6626b7c80 Mon Sep 17 00:00:00 2001 From: hrodward <2536699+hrodward@users.noreply.github.com> Date: Fri, 18 Oct 2019 08:07:53 +0200 Subject: [PATCH] Update article.md There has to be a scary CPU-intensive task here, otherwise the example wouldn't make sense. Hence the suppression of "can"; I have also removed "actually" because in this context it would be interpreted as "to your surprise", which is not the case here --- 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 8536cf31..fbbfdd80 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 @@ -75,7 +75,7 @@ let worker = { }, slow(x) { - // actually, there can be a scary CPU-heavy task here + // scary CPU-heavy task here alert("Called with " + x); return x * this.someMethod(); // (*) }