summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Argasinski <argasinski.hubert@gmail.com>2017-06-11 23:36:41 -0400
committerHubert Argasinski <argasinski.hubert@gmail.com>2017-06-11 23:36:41 -0400
commitee70042f12912ea701d2174f0eaeadcf99867ca3 (patch)
tree1fdf5ca6eb8ff47ebf3c88ca2560890303e06620
parente3a341b2844998f5aabacf6b7873c224f6d59363 (diff)
downloadasync-ee70042f12912ea701d2174f0eaeadcf99867ca3.tar.gz
fix concatLimit linting
-rw-r--r--lib/concatLimit.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/concatLimit.js b/lib/concatLimit.js
index 8a19c05..68dd8a3 100644
--- a/lib/concatLimit.js
+++ b/lib/concatLimit.js
@@ -14,7 +14,7 @@ import mapLimit from './mapLimit';
* @param {number} limit - The maximum number of async operations at a time.
* @param {AsyncFunction} iteratee - A function to apply to each item in `coll`,
* which should use an array as its result. Invoked with (item, callback).
- * @param {Function} [callback(err)] - A callback which is called after all the
+ * @param {Function} [callback] - A callback which is called after all the
* `iteratee` functions have finished, or an error occurs. Results is an array
* containing the concatenated results of the `iteratee` function. Invoked with
* (err, results).