From c039f04ef9674c05e1c5c77d56ffc05858177a6b Mon Sep 17 00:00:00 2001 From: LeviDing Date: Sat, 29 Feb 2020 19:52:30 +0800 Subject: [PATCH] Update article.md --- 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 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: