From 85fd650f5ca37e174d136123b616c553214c565e Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Mon, 22 Dec 2014 21:16:51 +0800 Subject: [PATCH] More comment updates [ci skip] --- lodash.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 5b018f12f..3b13c72d0 100644 --- a/lodash.js +++ b/lodash.js @@ -485,8 +485,7 @@ } /** - * The base implementation of `_.indexOf` without support for `fromIndex` - * bounds checks and binary searches. + * The base implementation of `_.indexOf` without support for binary searches. * * @private * @param {Array} array The array to search. @@ -964,7 +963,7 @@ var NEGATIVE_INFINITY = Number.NEGATIVE_INFINITY, POSITIVE_INFINITY = Number.POSITIVE_INFINITY; - /** Used as references for the max length and index of an array. */ + /** Used as references for the maximum length and index of an array. */ var MAX_ARRAY_LENGTH = Math.pow(2, 32) - 1, MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;