diff options
author | Zachary Scott <e@zzak.io> | 2014-11-28 17:32:59 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-11-28 17:32:59 -0800 |
commit | da513551e8024ba8bc8763b04ed826330025b9c9 (patch) | |
tree | 69e92b172ce16c2e6f355723ca476ee5cec168d2 | |
parent | b599f99281d54047751e48789c44b73ccaec124c (diff) | |
parent | 61b39c0e39b23385a9b09565fde9a44f47efe2a5 (diff) | |
download | rails-da513551e8024ba8bc8763b04ed826330025b9c9.tar.gz rails-da513551e8024ba8bc8763b04ed826330025b9c9.tar.bz2 rails-da513551e8024ba8bc8763b04ed826330025b9c9.zip |
Merge pull request #17828 from yui-knk/fix/i18n_guide
[ci skip] fix class name
-rw-r--r-- | guides/source/i18n.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/i18n.md b/guides/source/i18n.md index f6cbc1823a..75b5275245 100644 --- a/guides/source/i18n.md +++ b/guides/source/i18n.md @@ -626,7 +626,7 @@ entry[count == 1 ? 0 : 1] I.e. the translation denoted as `:one` is regarded as singular, the other is used as plural (including the count being zero). -If the lookup for the key does not return a Hash suitable for pluralization, an `18n::InvalidPluralizationData` exception is raised. +If the lookup for the key does not return a Hash suitable for pluralization, an `I18n::InvalidPluralizationData` exception is raised. ### Setting and Passing a Locale |