summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author✌️ <martiliones@yandex.com>2022-06-23 00:05:30 +0600
committerGitHub <noreply@github.com>2022-06-22 11:05:30 -0700
commitab83de5eee02230d9b5f2f9b1fc7ddacface2d0d (patch)
tree5e86c9dd9de81af589ba9007c03809ad2753f40d
parent63d0de2fd9f85d9e0727c3a82a250a561294a3fd (diff)
downloadasync-ab83de5eee02230d9b5f2f9b1fc7ddacface2d0d.tar.gz
fix: typo in jsdoc description for whilst (#1850)
-rw-r--r--lib/whilst.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/whilst.js b/lib/whilst.js
index 2a2a56c..5bc5067 100644
--- a/lib/whilst.js
+++ b/lib/whilst.js
@@ -12,7 +12,7 @@ import awaitify from './internal/awaitify.js'
* @method
* @category Control Flow
* @param {AsyncFunction} test - asynchronous truth test to perform before each
- * execution of `iteratee`. Invoked with ().
+ * execution of `iteratee`. Invoked with (callback).
* @param {AsyncFunction} iteratee - An async function which is called each time
* `test` passes. Invoked with (callback).
* @param {Function} [callback] - A callback which is called after the test