aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMichael Kueller2013-09-23 11:53:05 +0200
committerPete Bacon Darwin2013-09-25 22:34:10 +0100
commit4beb98131a424781af807b903bab98ade5fae127 (patch)
tree6db17cbecdbcc89aca716d527f44455fe001b46e /docs
parent12ae60052f2850d8e325d1090e3b06c6620cdd36 (diff)
downloadangular.js-4beb98131a424781af807b903bab98ade5fae127.tar.bz2
docs(guide/services): fix typo
Closes #4112
Diffstat (limited to 'docs')
-rw-r--r--docs/content/guide/dev_guide.services.understanding_services.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/dev_guide.services.understanding_services.ngdoc b/docs/content/guide/dev_guide.services.understanding_services.ngdoc
index be1966f6..56530687 100644
--- a/docs/content/guide/dev_guide.services.understanding_services.ngdoc
+++ b/docs/content/guide/dev_guide.services.understanding_services.ngdoc
@@ -12,7 +12,7 @@ above). You can also create your own custom services.
## Using a Service
-To use an Angular service, you identify it as a dependency for the component (controller, service,
+To use an Angular service, you identify it as a dependency for the componentt (controller, service,
filter or directive) that depends on the service. Angular's dependency injection subsystem takes
care of the rest. The Angular injector subsystem is in charge of service instantiation, resolution
of dependencies, and provision of dependencies to components as requested.
@@ -35,7 +35,7 @@ Or by providing an "inline" injection annotation:
## Defining a Service
-Application developers are free to define their own services by registering a their name, and **service
+Application developers are free to define their own services by registering their name, and **service
factory function**, in Angular modules.
The purpose of the **service factory function** is to generate the single object, or function, that