From fbd620e8aeaaac08082eb7041c27c635a67ec505 Mon Sep 17 00:00:00 2001 From: Sekib Omazic Date: Wed, 10 Sep 2014 10:24:33 +0200 Subject: [PATCH] docs(angular.extend) actually only copies own enumerable properties Closes #9007 --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index 35fce894..90edb364 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -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.