docs(guide/providers): fix grammar

This commit is contained in:
Oivvio Polite
2014-06-03 15:50:16 +02:00
committed by Brian Ford
parent 9227a5db94
commit 08e6b88fb2

View File

@@ -129,7 +129,7 @@ myApp.factory('apiToken', ['clientId', function apiTokenFactory(clientId) {
```
In the code above, we see how the `apiToken` service is defined via the Factory recipe that depends
on `clientId` service. The factory service then uses NSA-proof encryption to produce an authentication
on the `clientId` service. The factory service then uses NSA-proof encryption to produce an authentication
token.
Note: It is best practice to name the factory functions as `<serviceId>Factory`