diff options
author | Nathaniel Jones <hello@nthj.me> | 2013-01-09 04:04:57 -0600 |
---|---|---|
committer | Nathaniel Jones <hello@nthj.me> | 2013-01-09 04:04:57 -0600 |
commit | d2f1ca29fc67784c576d5776ccfebbc2a45ac7e5 (patch) | |
tree | c366b5b0bcd6d1acf63d342935ecee9326768a3c | |
parent | 5d0d82957ae2658a576f5785506a52cfe03d0758 (diff) | |
download | rails-d2f1ca29fc67784c576d5776ccfebbc2a45ac7e5.tar.gz rails-d2f1ca29fc67784c576d5776ccfebbc2a45ac7e5.tar.bz2 rails-d2f1ca29fc67784c576d5776ccfebbc2a45ac7e5.zip |
Fix typo in deprecation warning
-rw-r--r-- | actionpack/lib/action_controller/record_identifier.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/record_identifier.rb b/actionpack/lib/action_controller/record_identifier.rb index 03b0f25f29..70e0a820c4 100644 --- a/actionpack/lib/action_controller/record_identifier.rb +++ b/actionpack/lib/action_controller/record_identifier.rb @@ -4,7 +4,7 @@ module ActionController module RecordIdentifier MESSAGE = 'method will no longer be included by default in controllers since Rails 4.1. ' + 'If you would like to use it in controllers, please include ' + - 'ActionView::RecodIdentifier module.' + 'ActionView::RecordIdentifier module.' def dom_id(record, prefix = nil) ActiveSupport::Deprecation.warn('dom_id ' + MESSAGE) |