docs($injector): remove extranneous 'the' from injector docs

This commit is contained in:
Jason Morrison
2013-03-07 14:17:34 -08:00
committed by Pawel Kozlowski
parent 69ef17cce9
commit a248d5a32d

View File

@@ -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.