diff --git a/docs/style.md b/docs/style.md index 14d4aec..73ae589 100644 --- a/docs/style.md +++ b/docs/style.md @@ -250,7 +250,7 @@ const nodes = Array.from(foo); })(); ``` -那些需要使用函数表达式的场合,尽量用箭头函数代替。因为这样更简洁,而且绑定了 this。 +那些需要使用内联函数(或匿名函数)的场合,尽量用箭头函数代替。因为这样更简洁,而且绑定了 this。 ```javascript // bad