aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/i18n.md
diff options
context:
space:
mode:
authortanmay3011 <tanmay3011@gmail.com>2015-10-06 23:34:05 +0530
committertanmay3011 <tanmay3011@gmail.com>2015-10-06 23:34:05 +0530
commit148d1217a134b1071228b0dbf5b1fc5a17741044 (patch)
treecff728b6834dc72607ebed88ab844be871416fa2 /guides/source/i18n.md
parent9e25e0e1735f2ccca69679243aa8cf0885104164 (diff)
downloadrails-148d1217a134b1071228b0dbf5b1fc5a17741044.tar.gz
rails-148d1217a134b1071228b0dbf5b1fc5a17741044.tar.bz2
rails-148d1217a134b1071228b0dbf5b1fc5a17741044.zip
[ci skip] Change 'an URL' to 'a URL' as URL doesn't have a vowel sound
Diffstat (limited to 'guides/source/i18n.md')
-rw-r--r--guides/source/i18n.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/i18n.md b/guides/source/i18n.md
index ea79855919..87d2fafaf3 100644
--- a/guides/source/i18n.md
+++ b/guides/source/i18n.md
@@ -249,7 +249,7 @@ end
With this approach you will not get a `Routing Error` when accessing your resources such as `http://localhost:3001/books` without a locale. This is useful for when you want to use the default locale when one is not specified.
-Of course, you need to take special care of the root URL (usually "homepage" or "dashboard") of your application. An URL like `http://localhost:3001/nl` will not work automatically, because the `root to: "books#index"` declaration in your `routes.rb` doesn't take locale into account. (And rightly so: there's only one "root" URL.)
+Of course, you need to take special care of the root URL (usually "homepage" or "dashboard") of your application. A URL like `http://localhost:3001/nl` will not work automatically, because the `root to: "books#index"` declaration in your `routes.rb` doesn't take locale into account. (And rightly so: there's only one "root" URL.)
You would probably need to map URLs like these: