From 08e6b88fb2577ef8b9bd076e6d308de880644d4e Mon Sep 17 00:00:00 2001 From: Oivvio Polite Date: Tue, 3 Jun 2014 15:50:16 +0200 Subject: [PATCH] docs(guide/providers): fix grammar --- docs/content/guide/providers.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/providers.ngdoc b/docs/content/guide/providers.ngdoc index 97e37297..b7f493cd 100644 --- a/docs/content/guide/providers.ngdoc +++ b/docs/content/guide/providers.ngdoc @@ -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 `Factory`