diff --git a/lodash.js b/lodash.js index 89dc8d54b..f41b2bb23 100644 --- a/lodash.js +++ b/lodash.js @@ -7872,11 +7872,11 @@ * var object = { 'user': 'fred' }; * var other = { 'user': 'fred' }; * - * object == other; - * // => false - * * _.isEqual(object, other); * // => true + * + * object == other; + * // => false */ function isEqual(value, other) { return baseIsEqual(value, other);