summaryrefslogtreecommitdiff
path: root/lib/concatLimit.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/concatLimit.js')
-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).