aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/providers.ngdoc
diff options
context:
space:
mode:
authorPavel Pomerantsev2013-11-23 23:45:26 +0400
committerPete Bacon Darwin2013-11-27 22:41:53 +0000
commit1497c6c1fb9783855802d2a81b6e3ec9b9b6bb66 (patch)
treeabc0594f3633662d6ed229e68f936fca01152b0a /docs/content/guide/providers.ngdoc
parente41e445b513f97b4c42b51f3bf67835f28d65b48 (diff)
downloadangular.js-1497c6c1fb9783855802d2a81b6e3ec9b9b6bb66.tar.bz2
docs(guide/providers): fix typo
Closes #5102
Diffstat (limited to 'docs/content/guide/providers.ngdoc')
-rw-r--r--docs/content/guide/providers.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/providers.ngdoc b/docs/content/guide/providers.ngdoc
index ae374f07..f0d33b51 100644
--- a/docs/content/guide/providers.ngdoc
+++ b/docs/content/guide/providers.ngdoc
@@ -110,7 +110,7 @@ myApp.factory('clientId', function clientIdFactory() {
But given that the token is just a string literal, sticking with the Value recipe is still more
appropriate as it makes the code easier to follow.
-Let's say, however, that we would also like create a service that computes a token used for
+Let's say, however, that we would also like to create a service that computes a token used for
authentication against a remote API. This token will be called 'apiToken' and will be computed
based on the `clientId` value and a secret stored in browser's local storage: