aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Bohn2013-06-15 05:42:08 -0700
committerPete Bacon Darwin2013-06-18 21:56:53 +0100
commit8b81cf202ba181ce76d21b4f073a9dc0c0bd9e3e (patch)
tree72a4bdd8be022c65247315ecda2f3dd7b98d498b
parent6295a0d9bd7f57b1c23d83bf6a74d1242c3e19b4 (diff)
downloadangular.js-8b81cf202ba181ce76d21b4f073a9dc0c0bd9e3e.tar.bz2
docs(tutorial/step_07): add commas make tutorial read more clearly
-rw-r--r--docs/content/tutorial/step_07.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc
index c13c8911..f3ac4994 100644
--- a/docs/content/tutorial/step_07.ngdoc
+++ b/docs/content/tutorial/step_07.ngdoc
@@ -53,7 +53,7 @@ When the application bootstraps, Angular creates an injector that will be used f
this app. The injector itself doesn't know anything about what `$http` or `$route` services do, in
fact it doesn't even know about the existence of these services unless it is configured with proper
module definitions. The sole responsibilities of the injector are to load specified module
-definition(s), register all service providers defined in these modules and when asked inject
+definition(s), register all service providers defined in these modules, and when asked, inject
a specified function with dependencies (services) that it lazily instantiates via their providers.
Providers are objects that provide (create) instances of services and expose configuration APIs