Skip to content

Commit fea21c5

Browse files
MichaelKuellerjamesdaily
authored andcommitted
docs(guide/services): fix typo
Closes angular#4112
1 parent 0498a7b commit fea21c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/dev_guide.services.understanding_services.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ above). You can also create your own custom services.
1212

1313
## Using a Service
1414

15-
To use an Angular service, you identify it as a dependency for the component (controller, service,
15+
To use an Angular service, you identify it as a dependency for the componentt (controller, service,
1616
filter or directive) that depends on the service. Angular's dependency injection subsystem takes
1717
care of the rest. The Angular injector subsystem is in charge of service instantiation, resolution
1818
of dependencies, and provision of dependencies to components as requested.
@@ -35,7 +35,7 @@ Or by providing an "inline" injection annotation:
3535

3636
## Defining a Service
3737

38-
Application developers are free to define their own services by registering a their name, and **service
38+
Application developers are free to define their own services by registering their name, and **service
3939
factory function**, in Angular modules.
4040

4141
The purpose of the **service factory function** is to generate the single object, or function, that

0 commit comments

Comments
 (0)