From 6d431dc76070e21cfa990ba2ba3abab179acc636 Mon Sep 17 00:00:00 2001 From: Dave Jeffery Date: Tue, 10 Mar 2015 10:11:13 +0000 Subject: [PATCH] docs(angular.extend): final param documentation does not match functionality The `deep` property is hard-coded to `false` and is not configurable as the docs suggest. I'm not sure if the documentation is incorrect or the implementation is incorrect. --- src/Angular.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Angular.js b/src/Angular.js index d2d5b6ace46d..efba7c07601b 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -362,8 +362,6 @@ function baseExtend(dst, objs, deep) { * * @param {Object} dst Destination object. * @param {...Object} src Source object(s). - * @param {boolean=} deep if the last parameter is set to `true`, objects are recursively merged - * (deep copy). Defaults to `false`. * @returns {Object} Reference to `dst`. */ function extend(dst) {