Cleanup _.assign and _.extend docs. [ci skip]

This commit is contained in:
John-David Dalton
2015-09-11 23:47:32 -07:00
parent 8cbb8befd4
commit fb4cf9e78f

View File

@@ -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. * object. Subsequent sources overwrite property assignments of previous sources.
* *
* **Note:** This method mutates `object` and is based on * **Note:** This method mutates `object` and is based on
@@ -9133,9 +9133,9 @@
} }
/** /**
* Assigns own enumerable properties of source object(s) to the destination * Assigns own and inherited enumerable properties of source objects to the
* object for all destination properties that resolve to `undefined`. Once a * destination object for all destination properties that resolve to `undefined`.
* property is set, additional values of the same property are ignored. * Once a property is set, additional values of the same property are ignored.
* *
* **Note:** This method mutates `object`. * **Note:** This method mutates `object`.
* *