aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Lahti2013-03-26 00:41:31 -0300
committerIgor Minar2013-04-04 09:43:35 -0700
commitafcf03fd2c5823319e06bc012e3b8a5cf819f905 (patch)
treed6422bf547a951da38d3e8dffabd23f1edc3e088
parent582612b000a20789e2d4acabeacc158abb089568 (diff)
downloadangular.js-afcf03fd2c5823319e06bc012e3b8a5cf819f905.tar.bz2
docs(guide): fix typo in DI. angualar -> angular
-rw-r--r--docs/content/guide/di.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/di.ngdoc b/docs/content/guide/di.ngdoc
index 75d016b6..bd9cea20 100644
--- a/docs/content/guide/di.ngdoc
+++ b/docs/content/guide/di.ngdoc
@@ -213,7 +213,7 @@ services, and filters. The factory methods are registered with the module, and t
of declaring factories is:
<pre>
- angualar.module('myModule', []).
+ angular.module('myModule', []).
config(['depProvider', function(depProvider){
...
}]).