Tweak _.isPlainObject doc example. [ci skip]

Former-commit-id: 5d4916d5c1a2909062cc9f2646a580b630fb4e35
This commit is contained in:
John-David Dalton
2012-10-10 00:46:52 -07:00
parent f97c6fb94c
commit b751fd738d

View File

@@ -892,10 +892,10 @@
* }
*
* _.isPlainObject(new Stooge('moe', 40));
* // false
* // => false
*
* _.isPlainObject([1, 2, 3]);
* // false
* // => false
*
* _.isPlainObject({ 'name': 'moe', 'age': 40 });
* // => true