Use thru instead of through in docs. [ci skip]

This commit is contained in:
John-David Dalton
2016-04-03 19:47:13 -07:00
parent 75d196b01b
commit a5990a4c4e

View File

@@ -8004,9 +8004,9 @@
/** /**
* Creates an object composed of keys generated from the results of running * Creates an object composed of keys generated from the results of running
* each element of `collection` through `iteratee`. The corresponding value * each element of `collection` thru `iteratee`. The corresponding value of
* of each key is the number of times the key was returned by `iteratee`. * each key is the number of times the key was returned by `iteratee`. The
* The iteratee is invoked with one argument: (value). * iteratee is invoked with one argument: (value).
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -8188,8 +8188,8 @@
/** /**
* Creates a flattened array of values by running each element in `collection` * Creates a flattened array of values by running each element in `collection`
* through `iteratee` and flattening the mapped results. The iteratee is * thru `iteratee` and flattening the mapped results. The iteratee is invoked
* invoked with three arguments: (value, index|key, collection). * with three arguments: (value, index|key, collection).
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -8326,9 +8326,9 @@
/** /**
* Creates an object composed of keys generated from the results of running * Creates an object composed of keys generated from the results of running
* each element of `collection` through `iteratee`. The corresponding value * each element of `collection` thru `iteratee`. The corresponding value of
* of each key is an array of elements responsible for generating the key. * each key is an array of elements responsible for generating the key. The
* The iteratee is invoked with one argument: (value). * iteratee is invoked with one argument: (value).
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -8436,8 +8436,8 @@
/** /**
* Creates an object composed of keys generated from the results of running * Creates an object composed of keys generated from the results of running
* each element of `collection` through `iteratee`. The corresponding value * each element of `collection` thru `iteratee`. The corresponding value of
* of each key is the last element responsible for generating the key. The * each key is the last element responsible for generating the key. The
* iteratee is invoked with one argument: (value). * iteratee is invoked with one argument: (value).
* *
* @static * @static
@@ -8468,7 +8468,7 @@
}); });
/** /**
* Creates an array of values by running each element in `collection` through * Creates an array of values by running each element in `collection` thru
* `iteratee`. The iteratee is invoked with three arguments: * `iteratee`. The iteratee is invoked with three arguments:
* (value, index|key, collection). * (value, index|key, collection).
* *
@@ -8601,7 +8601,7 @@
/** /**
* Reduces `collection` to a value which is the accumulated result of running * Reduces `collection` to a value which is the accumulated result of running
* each element in `collection` through `iteratee`, where each successive * each element in `collection` thru `iteratee`, where each successive
* invocation is supplied the return value of the previous. If `accumulator` * invocation is supplied the return value of the previous. If `accumulator`
* is not given the first element of `collection` is used as the initial * is not given the first element of `collection` is used as the initial
* value. The iteratee is invoked with four arguments: * value. The iteratee is invoked with four arguments:
@@ -8879,7 +8879,7 @@
/** /**
* Creates an array of elements, sorted in ascending order by the results of * Creates an array of elements, sorted in ascending order by the results of
* running each element in a collection through each iteratee. This method * running each element in a collection thru each iteratee. This method
* performs a stable sort, that is, it preserves the original sort order of * performs a stable sort, that is, it preserves the original sort order of
* equal elements. The iteratees are invoked with one argument: (value). * equal elements. The iteratees are invoked with one argument: (value).
* *
@@ -12144,8 +12144,8 @@
/** /**
* This method is like `_.invert` except that the inverted object is generated * This method is like `_.invert` except that the inverted object is generated
* from the results of running each element of `object` through `iteratee`. * from the results of running each element of `object` thru `iteratee`. The
* The corresponding inverted value of each inverted key is an array of keys * corresponding inverted value of each inverted key is an array of keys
* responsible for generating the inverted value. The iteratee is invoked * responsible for generating the inverted value. The iteratee is invoked
* with one argument: (value). * with one argument: (value).
* *
@@ -12291,8 +12291,8 @@
/** /**
* The opposite of `_.mapValues`; this method creates an object with the * The opposite of `_.mapValues`; this method creates an object with the
* same values as `object` and keys generated by running each own enumerable * same values as `object` and keys generated by running each own enumerable
* string keyed property of `object` through `iteratee`. The iteratee is * string keyed property of `object` thru `iteratee`. The iteratee is invoked
* invoked with three arguments: (value, key, object). * with three arguments: (value, key, object).
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -12320,8 +12320,8 @@
} }
/** /**
* Creates an object with the same keys as `object` and values generated by * Creates an object with the same keys as `object` and values generated
* running each own enumerable string keyed property of `object` through * by running each own enumerable string keyed property of `object` thru
* `iteratee`. The iteratee is invoked with three arguments: * `iteratee`. The iteratee is invoked with three arguments:
* (value, key, object). * (value, key, object).
* *
@@ -12703,11 +12703,11 @@
/** /**
* An alternative to `_.reduce`; this method transforms `object` to a new * An alternative to `_.reduce`; this method transforms `object` to a new
* `accumulator` object which is the result of running each of its own enumerable * `accumulator` object which is the result of running each of its own
* string keyed properties through `iteratee`, with each invocation potentially * enumerable string keyed properties thru `iteratee`, with each invocation
* mutating the `accumulator` object. The iteratee is invoked with four arguments: * potentially mutating the `accumulator` object. The iteratee is invoked
* (accumulator, value, key, object). Iteratee functions may exit iteration * with four arguments: (accumulator, value, key, object). Iteratee functions
* early by explicitly returning `false`. * may exit iteration early by explicitly returning `false`.
* *
* @static * @static
* @memberOf _ * @memberOf _