summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/eachSeries.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/eachSeries.js b/lib/eachSeries.js
index b4a86ba..a23aef5 100644
--- a/lib/eachSeries.js
+++ b/lib/eachSeries.js
@@ -4,6 +4,9 @@ import awaitify from './internal/awaitify'
/**
* The same as [`each`]{@link module:Collections.each} but runs only a single async operation at a time.
*
+ * Note, that unlike [`each`]{@link module:Collections.each}, this function applies iteratee to each item
+ * in series and therefore the iteratee functions will complete in order.
+
* @name eachSeries
* @static
* @memberOf module:Collections