Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
docs(guide/services): fix typo
Browse files Browse the repository at this point in the history
Closes #4112
  • Loading branch information
MichaelKueller authored and petebacondarwin committed Sep 25, 2013
1 parent 12ae600 commit 4beb981
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,

This comment has been minimized.

Copy link
@hastebrot

hastebrot Sep 26, 2013

Looks another typo slipped here through. s/componentt/component

This comment has been minimized.

Copy link
@petebacondarwin

petebacondarwin Sep 26, 2013

Contributor

Doh!

This comment has been minimized.

Copy link
@petebacondarwin

petebacondarwin Sep 26, 2013

Contributor

Fixed at 3b3e89d

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.
Expand All @@ -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
Expand Down

0 comments on commit 4beb981

Please sign in to comment.