summaryrefslogtreecommitdiff
path: root/docs/v3/detectSeries.js.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/v3/detectSeries.js.html')
-rw-r--r--docs/v3/detectSeries.js.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/v3/detectSeries.js.html b/docs/v3/detectSeries.js.html
index 6d5c8c3..791ca20 100644
--- a/docs/v3/detectSeries.js.html
+++ b/docs/v3/detectSeries.js.html
@@ -30,7 +30,7 @@
</div>
<ul class="nav navbar-nav">
<li id="version-dropdown" class="dropdown">
- <a href="#" class="dropdown-toggle vertically-centered" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">v3.2.3 <span class="caret"></span>
+ <a href="#" class="dropdown-toggle vertically-centered" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">v3.2.4 <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="../v3/">v3.0.x</a></li>
@@ -98,7 +98,7 @@ import awaitify from &apos;./internal/awaitify.js&apos;
* Result will be the first item in the array that passes the truth test
* (iteratee) or the value `undefined` if none passed. Invoked with
* (err, result).
- * @returns a Promise if no callback is passed
+ * @returns {Promise} a promise, if a callback is omitted
*/
function detectSeries(coll, iteratee, callback) {
return createTester(bool =&gt; bool, (res, item) =&gt; item)(eachOfLimit(1), coll, iteratee, callback)