aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Fine <jared@jfine.org>2015-01-16 15:08:52 -0500
committerJared Fine <jared@jfine.org>2015-01-16 15:08:52 -0500
commit780be3995517435695b73ac7201a3bd9525fff1e (patch)
tree1a1f4716ad41975c6d08e1fd0db803a32ed7917f
parentfb82da305c971c4647007f85e2523e0772c43eae (diff)
downloadrails-780be3995517435695b73ac7201a3bd9525fff1e.tar.gz
rails-780be3995517435695b73ac7201a3bd9525fff1e.tar.bz2
rails-780be3995517435695b73ac7201a3bd9525fff1e.zip
Underscore typo [ci skip]
-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 779526d733..fd2051e675 100644
--- a/guides/source/i18n.md
+++ b/guides/source/i18n.md
@@ -530,7 +530,7 @@ Thus the following calls are equivalent:
```ruby
I18n.t 'activerecord.errors.messages.record_invalid'
-I18n.t 'errors.messages.record_invalid', scope: :active_record
+I18n.t 'errors.messages.record_invalid', scope: :activerecord
I18n.t :record_invalid, scope: 'activerecord.errors.messages'
I18n.t :record_invalid, scope: [:activerecord, :errors, :messages]
```