diff options
| author | Alex Young | 2013-05-23 13:11:03 +0200 |
|---|---|---|
| committer | Pete Bacon Darwin | 2013-06-04 20:30:43 +0100 |
| commit | ffcfe7a86eb9763ee91a3d80b28e8178ba40feb2 (patch) | |
| tree | 6a1d9195dddba5d227d2926175308d35d4f93f85 | |
| parent | 6a33aa63cd3f0497baa5587b0335a793ffd02864 (diff) | |
| download | angular.js-ffcfe7a86eb9763ee91a3d80b28e8178ba40feb2.tar.bz2 | |
docs(guide/di): fix some small grammatical issues
| -rw-r--r-- | docs/content/guide/di.ngdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/guide/di.ngdoc b/docs/content/guide/di.ngdoc index a723e6c3..e1b57d31 100644 --- a/docs/content/guide/di.ngdoc +++ b/docs/content/guide/di.ngdoc @@ -102,12 +102,12 @@ dependency lookup responsibility to the injector by declaring the dependencies a Notice that by having the `ng-controller` instantiate the class, it can satisfy all of the dependencies of `MyController` without the controller ever knowing about the injector. This is -the best outcome. The application code simply ask for the dependencies it needs, without having to +the best outcome. The application code simply asks for the dependencies it needs, without having to deal with the injector. This setup does not break the Law of Demeter. # Dependency Annotation -How does the injector know what service needs to be injected? +How does the injector know what service needs to be injected? The application developer needs to provide annotation information that the injector uses in order to resolve the dependencies. Throughout Angular certain API functions are invoked using the @@ -137,7 +137,7 @@ http://www.pretotyping.org/ pretotyping}, and demo applications. # `$inject` Annotation To allow the minifers to rename the function parameters and still be able to inject right services -the function needs to be annotate with the `$inject` property. The `$inject` property is an array +the function needs to be annotated with the `$inject` property. The `$inject` property is an array of service names to inject. <pre> |
