Skip to content

Commit 819a34b

Browse files
authored
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`.
1 parent 62cb8ea commit 819a34b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

dist/async.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2590,7 +2590,7 @@
25902590
* The iteratee should complete with a `key` to group the value under.
25912591
* Invoked with (value, callback).
25922592
* @param {Function} [callback] - A callback which is called when all `iteratee`
2593-
* functions have finished, or an error occurs. Result is an `Object` whoses
2593+
* functions have finished, or an error occurs. Result is an `Object` whose
25942594
* properties are arrays of values which returned the corresponding key.
25952595
* @returns {Promise} a promise, if no callback is passed
25962596
*/
@@ -2647,7 +2647,7 @@
26472647
* The iteratee should complete with a `key` to group the value under.
26482648
* Invoked with (value, callback).
26492649
* @param {Function} [callback] - A callback which is called when all `iteratee`
2650-
* functions have finished, or an error occurs. Result is an `Object` whoses
2650+
* functions have finished, or an error occurs. Result is an `Object` whose
26512651
* properties are arrays of values which returned the corresponding key.
26522652
* @returns {Promise} a promise, if no callback is passed
26532653
* @example
@@ -2681,7 +2681,7 @@
26812681
* The iteratee should complete with a `key` to group the value under.
26822682
* Invoked with (value, callback).
26832683
* @param {Function} [callback] - A callback which is called when all `iteratee`
2684-
* functions have finished, or an error occurs. Result is an `Object` whoses
2684+
* functions have finished, or an error occurs. Result is an `Object` whose
26852685
* properties are arrays of values which returned the corresponding key.
26862686
* @returns {Promise} a promise, if no callback is passed
26872687
*/

docs/v2/scripts/async.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -3532,7 +3532,7 @@ function forever(fn, errback) {
35323532
* The iteratee should complete with a `key` to group the value under.
35333533
* Invoked with (value, callback).
35343534
* @param {Function} [callback] - A callback which is called when all `iteratee`
3535-
* functions have finished, or an error occurs. Result is an `Object` whoses
3535+
* functions have finished, or an error occurs. Result is an `Object` whose
35363536
* properties are arrays of values which returned the corresponding key.
35373537
*/
35383538
var groupByLimit = function(coll, limit, iteratee, callback) {
@@ -3587,7 +3587,7 @@ var groupByLimit = function(coll, limit, iteratee, callback) {
35873587
* The iteratee should complete with a `key` to group the value under.
35883588
* Invoked with (value, callback).
35893589
* @param {Function} [callback] - A callback which is called when all `iteratee`
3590-
* functions have finished, or an error occurs. Result is an `Object` whoses
3590+
* functions have finished, or an error occurs. Result is an `Object` whose
35913591
* properties are arrays of values which returned the corresponding key.
35923592
* @example
35933593
*
@@ -3619,7 +3619,7 @@ var groupBy = doLimit(groupByLimit, Infinity);
36193619
* The iteratee should complete with a `key` to group the value under.
36203620
* Invoked with (value, callback).
36213621
* @param {Function} [callback] - A callback which is called when all `iteratee`
3622-
* functions have finished, or an error occurs. Result is an `Object` whoses
3622+
* functions have finished, or an error occurs. Result is an `Object` whose
36233623
* properties are arrays of values which returned the corresponding key.
36243624
*/
36253625
var groupBySeries = doLimit(groupByLimit, 1);

docs/v3/scripts/async.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2590,7 +2590,7 @@
25902590
* The iteratee should complete with a `key` to group the value under.
25912591
* Invoked with (value, callback).
25922592
* @param {Function} [callback] - A callback which is called when all `iteratee`
2593-
* functions have finished, or an error occurs. Result is an `Object` whoses
2593+
* functions have finished, or an error occurs. Result is an `Object` whose
25942594
* properties are arrays of values which returned the corresponding key.
25952595
* @returns {Promise} a promise, if no callback is passed
25962596
*/
@@ -2647,7 +2647,7 @@
26472647
* The iteratee should complete with a `key` to group the value under.
26482648
* Invoked with (value, callback).
26492649
* @param {Function} [callback] - A callback which is called when all `iteratee`
2650-
* functions have finished, or an error occurs. Result is an `Object` whoses
2650+
* functions have finished, or an error occurs. Result is an `Object` whose
26512651
* properties are arrays of values which returned the corresponding key.
26522652
* @returns {Promise} a promise, if no callback is passed
26532653
* @example
@@ -2681,7 +2681,7 @@
26812681
* The iteratee should complete with a `key` to group the value under.
26822682
* Invoked with (value, callback).
26832683
* @param {Function} [callback] - A callback which is called when all `iteratee`
2684-
* functions have finished, or an error occurs. Result is an `Object` whoses
2684+
* functions have finished, or an error occurs. Result is an `Object` whose
26852685
* properties are arrays of values which returned the corresponding key.
26862686
* @returns {Promise} a promise, if no callback is passed
26872687
*/

lib/groupBySeries.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import groupByLimit from './groupByLimit';
1515
* The iteratee should complete with a `key` to group the value under.
1616
* Invoked with (value, callback).
1717
* @param {Function} [callback] - A callback which is called when all `iteratee`
18-
* functions have finished, or an error occurs. Result is an `Object` whoses
18+
* functions have finished, or an error occurs. Result is an `Object` whose
1919
* properties are arrays of values which returned the corresponding key.
2020
* @returns {Promise} a promise, if no callback is passed
2121
*/

0 commit comments

Comments
 (0)