diff --git a/lodash.src.js b/lodash.src.js index 0b214a929..d8912cd7c 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -8866,7 +8866,7 @@ function isFunction(value) { // The use of `Object#toString` avoids issues with the `typeof` operator // in older versions of Chrome and Safari which return 'function' for regexes - // and Safari 8 equivalents which return 'object' for typed array constructors. + // and Safari 8 which returns 'object' for typed array constructors. return isObject(value) && objToString.call(value) == funcTag; }