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 25d0eff3e6
commit 02169d4957

View File

@@ -327,7 +327,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.