From b751fd738d3bbfaab9a61f152177e6abefcc5c7e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 10 Oct 2012 00:46:52 -0700 Subject: [PATCH] Tweak `_.isPlainObject` doc example. [ci skip] Former-commit-id: 5d4916d5c1a2909062cc9f2646a580b630fb4e35 --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 4ef55e8d0..411ce2c23 100644 --- a/lodash.js +++ b/lodash.js @@ -892,10 +892,10 @@ * } * * _.isPlainObject(new Stooge('moe', 40)); - * // false + * // => false * * _.isPlainObject([1, 2, 3]); - * // false + * // => false * * _.isPlainObject({ 'name': 'moe', 'age': 40 }); * // => true