From 38a37f1b18979f3fb687b3a903a60e5591ed9905 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 10 Sep 2015 19:08:07 -0700 Subject: [PATCH] Use `===` in `_.isEqual` doc example. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 6a783c0b2..e9837f83b 100644 --- a/lodash.js +++ b/lodash.js @@ -8402,7 +8402,7 @@ * _.isEqual(object, other); * // => true * - * object == other; + * object === other; * // => false */ function isEqual(value, other) {