From 42b6f320d85d4b9cd0b8cae7c67a94034703b9ac Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 15 Jan 2015 02:18:28 -0800 Subject: [PATCH] Fix `_.isTypedArray` docs. [ci skip] --- lodash.src.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 358b9aa52..0f9c1d90f 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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) {