Cleanup JSDoc comments.

Former-commit-id: ce8e7885528c1a7097cf6b73a713c960a20f85f6
This commit is contained in:
John-David Dalton
2012-05-21 15:33:45 -04:00
parent cb74e45b89
commit 9cf1424d8f

View File

@@ -570,7 +570,7 @@
* @example
*
* _.every([true, 1, null, 'yes'], Boolean);
* => false
* // => false
*/
var every = createIterator(baseIteratorOptions, everyIteratorOptions);
@@ -639,7 +639,7 @@
* // => alerts each number in turn
*
* _([1, 2, 3]).forEach(function(num) { alert(num); }).join(',');
* // => alerts each number in turn and returns "1,2,3"
* // => alerts each number in turn and returns '1,2,3'
*/
var forEach = createIterator(baseIteratorOptions, {
'top': 'if (thisArg) callback = bind(callback, thisArg)'