From 9a01f3a33725047749689baf93018a5de0f2a918 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 17 Jul 2015 17:30:45 -0700 Subject: [PATCH] Move the `false` example for `_.isEqual` below the `true` one. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);