From 9cf1424d8fce6f3c355690cb52485b4114d9b34d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 21 May 2012 15:33:45 -0400 Subject: [PATCH] Cleanup JSDoc comments. Former-commit-id: ce8e7885528c1a7097cf6b73a713c960a20f85f6 --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index e1b1b6f02..d396fa895 100644 --- a/lodash.js +++ b/lodash.js @@ -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)'