aboutsummaryrefslogtreecommitdiffstats
path: root/src/Angular.js
diff options
context:
space:
mode:
authorMarco Vito Moscaritolo2013-07-09 08:26:27 +0200
committerPete Bacon Darwin2013-07-09 14:32:59 +0100
commit403008816c1c7044dbbbaa84579713efb651f1a3 (patch)
tree84537c666752cd8c125e05198d1681c207486724 /src/Angular.js
parent62d552ffe229aabfc9bc50c1fac00d3f1835c891 (diff)
downloadangular.js-403008816c1c7044dbbbaa84579713efb651f1a3.tar.bz2
docs(angular.identity): fix missing 'angular' in identity function
Diffstat (limited to 'src/Angular.js')
-rw-r--r--src/Angular.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Angular.js b/src/Angular.js
index 95b20139..ec3be068 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -276,7 +276,7 @@ noop.$inject = [];
*
<pre>
function transformer(transformationFn, value) {
- return (transformationFn || identity)(value);
+ return (transformationFn || angular.identity)(value);
};
</pre>
*/