Minor doc tweaks to _.partition and _.zip. [ci skip]

This commit is contained in:
John-David Dalton
2014-02-09 00:32:58 -08:00
parent a91abb3e8d
commit de3d9dca72
5 changed files with 249 additions and 201 deletions

16
dist/lodash.compat.js vendored
View File

@@ -3123,10 +3123,10 @@
} }
/** /**
* Creates an array of grouped elements, the first of which contains the * Creates an array of grouped elements, the first of which contains the first
* first elements of the given arrays, the second of which contains the second * elements of the given arrays, the second of which contains the second elements
* elements of the given arrays, and so on. If a zipped value is provided its * of the given arrays, and so on. If a zipped value is provided its corresponding
* corresponding unzipped value will be returned. * unzipped value will be returned.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -4085,10 +4085,10 @@
} }
/** /**
* Creates an array of grouped elements, the first of which contains elements * Creates an array of elements split into two groups, the first of which
* the callback returns truey for, the second of which contains elements the * contains elements the callback returns truey for, while the second of which
* callback returns falsey for. The callback is bound to `thisArg` and invoked * contains elements the callback returns falsey for. The callback is bound
* with three arguments; (value, index|key, collection). * to `thisArg` and invoked with three arguments; (value, index|key, collection).
* *
* If a property name is provided for `callback` the created "_.pluck" style * If a property name is provided for `callback` the created "_.pluck" style
* callback will return the property value of the given element. * callback will return the property value of the given element.

16
dist/lodash.js vendored
View File

@@ -2860,10 +2860,10 @@
} }
/** /**
* Creates an array of grouped elements, the first of which contains the * Creates an array of grouped elements, the first of which contains the first
* first elements of the given arrays, the second of which contains the second * elements of the given arrays, the second of which contains the second elements
* elements of the given arrays, and so on. If a zipped value is provided its * of the given arrays, and so on. If a zipped value is provided its corresponding
* corresponding unzipped value will be returned. * unzipped value will be returned.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -3823,10 +3823,10 @@
} }
/** /**
* Creates an array of grouped elements, the first of which contains elements * Creates an array of elements split into two groups, the first of which
* the callback returns truey for, the second of which contains elements the * contains elements the callback returns truey for, while the second of which
* callback returns falsey for. The callback is bound to `thisArg` and invoked * contains elements the callback returns falsey for. The callback is bound
* with three arguments; (value, index|key, collection). * to `thisArg` and invoked with three arguments; (value, index|key, collection).
* *
* If a property name is provided for `callback` the created "_.pluck" style * If a property name is provided for `callback` the created "_.pluck" style
* callback will return the property value of the given element. * callback will return the property value of the given element.

View File

@@ -1858,10 +1858,10 @@
} }
/** /**
* Creates an array of grouped elements, the first of which contains the * Creates an array of grouped elements, the first of which contains the first
* first elements of the given arrays, the second of which contains the second * elements of the given arrays, the second of which contains the second elements
* elements of the given arrays, and so on. If a zipped value is provided its * of the given arrays, and so on. If a zipped value is provided its corresponding
* corresponding unzipped value will be returned. * unzipped value will be returned.
* *
* @static * @static
* @memberOf _ * @memberOf _

File diff suppressed because it is too large Load Diff

View File

@@ -3138,10 +3138,10 @@
} }
/** /**
* Creates an array of grouped elements, the first of which contains the * Creates an array of grouped elements, the first of which contains the first
* first elements of the given arrays, the second of which contains the second * elements of the given arrays, the second of which contains the second elements
* elements of the given arrays, and so on. If a zipped value is provided its * of the given arrays, and so on. If a zipped value is provided its corresponding
* corresponding unzipped value will be returned. * unzipped value will be returned.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -4101,10 +4101,10 @@
} }
/** /**
* Creates an array of grouped elements, the first of which contains elements * Creates an array of elements split into two groups, the first of which
* the callback returns truey for, the second of which contains elements the * contains elements the callback returns truey for, while the second of which
* callback returns falsey for. The callback is bound to `thisArg` and invoked * contains elements the callback returns falsey for. The callback is bound
* with three arguments; (value, index|key, collection). * to `thisArg` and invoked with three arguments; (value, index|key, collection).
* *
* If a property name is provided for `callback` the created "_.pluck" style * If a property name is provided for `callback` the created "_.pluck" style
* callback will return the property value of the given element. * callback will return the property value of the given element.