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

Commit ab6937e

Browse files
brettcannonbtford
authored andcommitted
fix(docs): Capitalize "APIs"
1 parent fbfda24 commit ab6937e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/content/tutorial/step_07.ngdoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ module definitions. The sole responsibilities of the injector are to load specif
5656
definition(s), register all service providers defined in these modules and when asked inject
5757
a specified function with dependencies (services) that it lazily instantiates via their providers.
5858

59-
Providers are objects that provide (create) instances of services and expose configuration apis
59+
Providers are objects that provide (create) instances of services and expose configuration APIs
6060
that can be used to control the creation and runtime behavior of a service. In case of the `$route`
61-
service, the `$routeProvider` exposes apis that allow you to define routes for your application.
61+
service, the `$routeProvider` exposes APIs that allow you to define routes for your application.
6262

6363
Angular modules solve the problem of removing global state from the application and provide a way
6464
of configuring the injector. As opposed to AMD or require.js modules, Angular modules don't try to
@@ -79,8 +79,8 @@ angular.module('phonecat', []).
7979
</pre>
8080

8181
In order to configure our application with routes, we need to create a module for our application.
82-
We call this module `phonecatApp` and using the `config` api we request the `$routeProvider` to be
83-
injected into our config function and use `$routeProvider.when` api to define our routes.
82+
We call this module `phonecatApp` and using the `config` API we request the `$routeProvider` to be
83+
injected into our config function and use `$routeProvider.when` API to define our routes.
8484

8585
Note that during the injector configuration phase, the providers can be injected as well, but they
8686
will not be available for injection once the injector is created and starts creating service

0 commit comments

Comments
 (0)