summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2020-02-23 17:56:23 -0800
committerAlexander Early <alexander.early@gmail.com>2020-02-23 17:56:23 -0800
commit01f88c98fc8088cf252f1f1a6cc9e135c895fa71 (patch)
tree7d93eb718c21250a3bfa88da1ae9e30cdb2a21c0
parent08f1b4deb383ab6bfd2c27214f21c4a5b1481a71 (diff)
downloadasync-01f88c98fc8088cf252f1f1a6cc9e135c895fa71.tar.gz
fix error in docs
-rw-r--r--docs/v3/docs.html2
-rw-r--r--docs/v3/module-ControlFlow.html2
-rw-r--r--docs/v3/whilst.js.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/v3/docs.html b/docs/v3/docs.html
index efe6f01..02f3401 100644
--- a/docs/v3/docs.html
+++ b/docs/v3/docs.html
@@ -15230,7 +15230,7 @@ callback. Invoked with (err, [results]);</p></td>
<pre class="prettyprint"><code>var count = 0;
async.whilst(
- function test(cb) { cb(null, count &lt; 5;) },
+ function test(cb) { cb(null, count &lt; 5); },
function iter(callback) {
count++;
setTimeout(function() {
diff --git a/docs/v3/module-ControlFlow.html b/docs/v3/module-ControlFlow.html
index b32fb92..719f5ce 100644
--- a/docs/v3/module-ControlFlow.html
+++ b/docs/v3/module-ControlFlow.html
@@ -6101,7 +6101,7 @@ callback. Invoked with (err, [results]);</p></td>
<pre class="prettyprint"><code>var count = 0;
async.whilst(
- function test(cb) { cb(null, count &lt; 5;) },
+ function test(cb) { cb(null, count &lt; 5); },
function iter(callback) {
count++;
setTimeout(function() {
diff --git a/docs/v3/whilst.js.html b/docs/v3/whilst.js.html
index ab1c531..6000d8c 100644
--- a/docs/v3/whilst.js.html
+++ b/docs/v3/whilst.js.html
@@ -101,7 +101,7 @@ import awaitify from &apos;./internal/awaitify&apos;;
*
* var count = 0;
* async.whilst(
- * function test(cb) { cb(null, count &lt; 5;) },
+ * function test(cb) { cb(null, count &lt; 5); },
* function iter(callback) {
* count++;
* setTimeout(function() {