Fix _.isTypedArray docs. [ci skip]

This commit is contained in:
John-David Dalton
2015-01-15 02:18:28 -08:00
committed by jdalton
parent 31b4a9197f
commit 42b6f320d8

View File

@@ -8273,7 +8273,7 @@
}
/**
* Checks if `value` is classified as typed array.
* Checks if `value` is classified as a typed array.
*
* @static
* @memberOf _
@@ -8282,10 +8282,10 @@
* @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
* @example
*
* _.isString('abc');
* _.isTypedArray(new Uint8Array);
* // => true
*
* _.isString(1);
* _.isTypedArray([]);
* // => false
*/
function isTypedArray(value) {