summaryrefslogtreecommitdiff
path: root/lib/apply.js
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2017-04-04 16:37:38 -0700
committerAlexander Early <alexander.early@gmail.com>2017-04-04 16:37:38 -0700
commitb8a051b2e604f21346a39ae47ed34636a1038140 (patch)
tree8d7ea9d6436adf0502bc2fad3294bbf8c5654bfb /lib/apply.js
parent53019a85063576c3aa7e48410d5f8018337f348e (diff)
downloadasync-b8a051b2e604f21346a39ae47ed34636a1038140.tar.gz
small fixes from review
Diffstat (limited to 'lib/apply.js')
-rw-r--r--lib/apply.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/apply.js b/lib/apply.js
index b1ca55a..06f630a 100644
--- a/lib/apply.js
+++ b/lib/apply.js
@@ -45,7 +45,7 @@ import slice from './internal/slice';
* two
* three
*/
-export default function(fn/*, args*/) {
+export default function(fn/*, ...args*/) {
var args = slice(arguments, 1);
return function(/*callArgs*/) {
var callArgs = slice(arguments);