aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/i18n.ngdoc
diff options
context:
space:
mode:
authorTyler McGinnis2014-01-06 12:02:05 -0700
committerIgor Minar2014-01-06 16:11:53 -0800
commit99d5defb1a20bd487d3dbc93adcbcfaad1d4006c (patch)
tree69862363b42e71f45829ddaaecbc9503128159e5 /docs/content/guide/i18n.ngdoc
parentefbc2428754dc803122198b523dc7071ddc6f3cd (diff)
downloadangular.js-99d5defb1a20bd487d3dbc93adcbcfaad1d4006c.tar.bz2
docs(guide/i18n): fix a typo
Closes #5651
Diffstat (limited to 'docs/content/guide/i18n.ngdoc')
-rw-r--r--docs/content/guide/i18n.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/i18n.ngdoc b/docs/content/guide/i18n.ngdoc
index b42bd1a8..1977fea0 100644
--- a/docs/content/guide/i18n.ngdoc
+++ b/docs/content/guide/i18n.ngdoc
@@ -97,7 +97,7 @@ locale, it is fine to rely on the default currency symbol. However, if you antic
in other locales might use your app, you should provide your own currency symbol to make sure the
actual value is understood.
-For example, if you want to display account balance of 1000 dollars with the following binding
+For example, if you want to display an account balance of 1000 dollars with the following binding
containing currency filter: `{{ 1000 | currency }}`, and your app is currently in en-US locale.
'$1000.00' will be shown. However, if someone in a different local (say, Japan) views your app, her
browser will specify the locale as ja, and the balance of '¥1000.00' will be shown instead. This