aboutsummaryrefslogtreecommitdiffstats
path: root/src/auto
diff options
context:
space:
mode:
authorJason Morrison2013-03-07 14:17:34 -0800
committerPawel Kozlowski2013-03-08 23:44:44 +0100
commita248d5a32d0ec40de599add92eb5ecfbae66391b (patch)
tree8dffc76af25d58ebbd4812d0d8836ca21974f47f /src/auto
parent69ef17cce9e94eabbe67eabfbacbe14137b599c9 (diff)
downloadangular.js-a248d5a32d0ec40de599add92eb5ecfbae66391b.tar.bz2
docs($injector): remove extranneous 'the' from injector docs
Diffstat (limited to 'src/auto')
-rw-r--r--src/auto/injector.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auto/injector.js b/src/auto/injector.js
index 70160fc5..d39e2aa9 100644
--- a/src/auto/injector.js
+++ b/src/auto/injector.js
@@ -254,7 +254,7 @@ function annotate(fn) {
* @description
*
* Use `$provide` to register new providers with the `$injector`. The providers are the factories for the instance.
- * The providers share the same name as the instance they create with the `Provider` suffixed to them.
+ * The providers share the same name as the instance they create with `Provider` suffixed to them.
*
* A provider is an object with a `$get()` method. The injector calls the `$get` method to create a new instance of
* a service. The Provider can have additional methods which would allow for configuration of the provider.