From fb4cf9e78f694d39f8780d0bf9a704e21fe1036e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 11 Sep 2015 23:47:32 -0700 Subject: [PATCH] Cleanup `_.assign` and `_.extend` docs. [ci skip] --- lodash.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lodash.js b/lodash.js index 4f07d8711..50642fe8c 100644 --- a/lodash.js +++ b/lodash.js @@ -9021,7 +9021,7 @@ /*------------------------------------------------------------------------*/ /** - * Assigns own enumerable properties of source object(s) to the destination + * Assigns own enumerable properties of source objects to the destination * object. Subsequent sources overwrite property assignments of previous sources. * * **Note:** This method mutates `object` and is based on @@ -9133,9 +9133,9 @@ } /** - * Assigns own enumerable properties of source object(s) to the destination - * object for all destination properties that resolve to `undefined`. Once a - * property is set, additional values of the same property are ignored. + * Assigns own and inherited enumerable properties of source objects to the + * destination object for all destination properties that resolve to `undefined`. + * Once a property is set, additional values of the same property are ignored. * * **Note:** This method mutates `object`. *