summaryrefslogtreecommitdiff
path: root/docs/v2/scripts/async.js
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2020-05-19 06:18:57 +1000
committerGitHub <noreply@github.com>2020-05-18 13:18:57 -0700
commit819a34b0e02c21e7f3390d70e72430d98d327d11 (patch)
tree3c4ecc23c9038d2b85215b533f360398637c5c5f /docs/v2/scripts/async.js
parent62cb8ea8ce3e3b4b66cf9abc66153d2d7255985b (diff)
downloadasync-819a34b0e02c21e7f3390d70e72430d98d327d11.tar.gz
docs: Fix simple typo, whoses -> whose (#1717)
There is a small typo in dist/async.js, docs/v2/scripts/async.js, docs/v3/scripts/async.js, lib/groupBySeries.js. Should read `whose` rather than `whoses`.
Diffstat (limited to 'docs/v2/scripts/async.js')
-rw-r--r--docs/v2/scripts/async.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/v2/scripts/async.js b/docs/v2/scripts/async.js
index 72264cc..5edaf43 100644
--- a/docs/v2/scripts/async.js
+++ b/docs/v2/scripts/async.js
@@ -3532,7 +3532,7 @@ function forever(fn, errback) {
* The iteratee should complete with a `key` to group the value under.
* Invoked with (value, callback).
* @param {Function} [callback] - A callback which is called when all `iteratee`
- * functions have finished, or an error occurs. Result is an `Object` whoses
+ * functions have finished, or an error occurs. Result is an `Object` whose
* properties are arrays of values which returned the corresponding key.
*/
var groupByLimit = function(coll, limit, iteratee, callback) {
@@ -3587,7 +3587,7 @@ var groupByLimit = function(coll, limit, iteratee, callback) {
* The iteratee should complete with a `key` to group the value under.
* Invoked with (value, callback).
* @param {Function} [callback] - A callback which is called when all `iteratee`
- * functions have finished, or an error occurs. Result is an `Object` whoses
+ * functions have finished, or an error occurs. Result is an `Object` whose
* properties are arrays of values which returned the corresponding key.
* @example
*
@@ -3619,7 +3619,7 @@ var groupBy = doLimit(groupByLimit, Infinity);
* The iteratee should complete with a `key` to group the value under.
* Invoked with (value, callback).
* @param {Function} [callback] - A callback which is called when all `iteratee`
- * functions have finished, or an error occurs. Result is an `Object` whoses
+ * functions have finished, or an error occurs. Result is an `Object` whose
* properties are arrays of values which returned the corresponding key.
*/
var groupBySeries = doLimit(groupByLimit, 1);