docs(guide/providers): fix typo

Closes #5102
This commit is contained in:
Pavel Pomerantsev 2013-11-23 23:45:26 +04:00 committed by Pete Bacon Darwin
parent e41e445b51
commit 1497c6c1fb

View file

@ -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: