More comment updates

[ci skip]
This commit is contained in:
Benjamin Tan
2014-12-22 21:16:51 +08:00
committed by John-David Dalton
parent b19033a375
commit 85fd650f5c

View File

@@ -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;