summaryrefslogtreecommitdiff
path: root/docs/v3/reduce.js.html
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@reddit.com>2021-08-05 16:20:34 -0700
committerAlexander Early <alexander.early@reddit.com>2021-08-05 16:20:34 -0700
commitb1b69b03b35022c6c9dfb8f4b9c1ace8f1baf5be (patch)
treea3fba8c83ef8a62e6c472a5c6fa0a576dc853134 /docs/v3/reduce.js.html
parentcac52e3978ad4675fb37995076a6331117bd99af (diff)
downloadasync-b1b69b03b35022c6c9dfb8f4b9c1ace8f1baf5be.tar.gz
regen docs
Diffstat (limited to 'docs/v3/reduce.js.html')
-rw-r--r--docs/v3/reduce.js.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/v3/reduce.js.html b/docs/v3/reduce.js.html
index c0c3d9e..8a048ce 100644
--- a/docs/v3/reduce.js.html
+++ b/docs/v3/reduce.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.0 <span class="caret"></span>
+ <a href="#" class="dropdown-toggle vertically-centered" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">v3.2.1 <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="../v3/">v3.0.x</a></li>
@@ -103,7 +103,7 @@ import awaitify from &apos;./internal/awaitify&apos;
* @param {AsyncFunction} iteratee - A function applied to each item in the
* array to produce the next step in the reduction.
* The `iteratee` should complete with the next state of the reduction.
- * If the iteratee complete with an error, the reduction is stopped and the
+ * If the iteratee completes with an error, the reduction is stopped and the
* main `callback` is immediately called with the error.
* Invoked with (memo, item, callback).
* @param {Function} [callback] - A callback which is called after all the
@@ -208,7 +208,6 @@ function reduce(coll, memo, iteratee, callback) {
}, err =&gt; callback(err, memo));
}
export default awaitify(reduce, 4)
-
</code></pre>
</article>
</section>