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 f9bc8916..c0f34850 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 @@ -300,7 +300,7 @@ So these two calls are almost equivalent: ```js func.call(context, ...args); // pass an array as list with spread syntax -func.apply(context, args); // is same as using apply +func.apply(context, args); // is same as using call ``` There's only a minor difference: