docs(angular.extend) actually only copies own enumerable properties

Closes #9007
This commit is contained in:
Sekib Omazic
2014-09-10 10:24:33 +02:00
committed by Peter Bacon Darwin
parent 4cfc279d39
commit fbd620e8ae

View File

@@ -338,7 +338,7 @@ function setHashKey(obj, h) {
* @kind function
*
* @description
* Extends the destination object `dst` by copying all of the properties from the `src` object(s)
* Extends the destination object `dst` by copying own enumerable properties from the `src` object(s)
* to `dst`. You can specify multiple `src` objects.
*
* @param {Object} dst Destination object.