From 1826cc8870ca2fa153be6202ba3201840b9c7375 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 15 Jan 2015 20:08:06 -0800 Subject: [PATCH] Cleanup `_.isPlainObject` docs. [ci skip] --- lodash.src.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 7627bfb4c..1c8ee2910 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -8192,8 +8192,8 @@ } /** - * Checks if `value` is an object created by the `Object` constructor or has - * a `[[Prototype]]` of `null`. + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. * * **Note:** This method assumes objects created by the `Object` constructor * have no inherited enumerable properties.