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:31:21 +0100
commitf89ba38dcd495b9e5f835b3af489e7b92e72ccf6 (patch)
treebf56ddbb3ed018a0e5e48d441d0df8ac502c1765 /src/Angular.js
parenta7150f1256f2a97a931b3c0d16eab70f45e81cae (diff)
downloadangular.js-f89ba38dcd495b9e5f835b3af489e7b92e72ccf6.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 98d32a7e..5d3be148 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -292,7 +292,7 @@ noop.$inject = [];
*
<pre>
function transformer(transformationFn, value) {
- return (transformationFn || identity)(value);
+ return (transformationFn || angular.identity)(value);
};
</pre>
*/