diff options
| author | brettcannon | 2012-07-19 12:05:00 -0300 | 
|---|---|---|
| committer | Brian Ford | 2012-07-19 09:49:44 -0700 | 
| commit | ab6937e2518bfd77d9fe42e3d2e11fe4a7a16814 (patch) | |
| tree | 717941416ddaf18246d536914688deafb8e28979 /docs/content/tutorial/step_07.ngdoc | |
| parent | fbfda241f616bcfe8273f501dd49120a3cb35fab (diff) | |
| download | angular.js-ab6937e2518bfd77d9fe42e3d2e11fe4a7a16814.tar.bz2 | |
fix(docs): Capitalize "APIs"
Diffstat (limited to 'docs/content/tutorial/step_07.ngdoc')
| -rw-r--r-- | docs/content/tutorial/step_07.ngdoc | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index 1e86b256..b7d635a8 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -56,9 +56,9 @@ module definitions. The sole responsibilities of the injector are to load specif  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 +Providers are objects that provide (create) instances of services and expose configuration APIs  that can be used to control the creation and runtime behavior of a service. In case of the `$route` -service, the `$routeProvider` exposes apis that allow you to define routes for your application. +service, the `$routeProvider` exposes APIs that allow you to define routes for your application.  Angular modules solve the problem of removing global state from the application and provide a way  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', []).  </pre>  In order to configure our application with routes, we need to create a module for our application. -We call this module `phonecatApp` and using the `config` api we request the `$routeProvider` to be -injected into our config function and use `$routeProvider.when` api to define our routes. +We call this module `phonecatApp` and using the `config` API we request the `$routeProvider` to be +injected into our config function and use `$routeProvider.when` API to define our routes.  Note that during the injector configuration phase, the providers can be injected as well, but they  will not be available for injection once the injector is created and starts creating service | 
