docs(angular.identity): fix missing 'angular' in identity function

This commit is contained in:
Marco Vito Moscaritolo 2013-07-09 08:26:27 +02:00 committed by Pete Bacon Darwin
parent 62d552ffe2
commit 403008816c

View file

@ -276,7 +276,7 @@ noop.$inject = [];
*
<pre>
function transformer(transformationFn, value) {
return (transformationFn || identity)(value);
return (transformationFn || angular.identity)(value);
};
</pre>
*/