aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-11-28 17:13:00 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-11-28 17:13:00 -0800
commit8b270620d5a082546c4dc06f39c5378fcd5d8c2b (patch)
tree6234d6d4e711fff3660d34c3844dcda0ab86806a /activerecord
parent39e85b3b90c58449164673909a6f1893cba290b2 (diff)
parent54aed2387ce790b5e2c88004ea53286680039421 (diff)
downloadrails-8b270620d5a082546c4dc06f39c5378fcd5d8c2b.tar.gz
rails-8b270620d5a082546c4dc06f39c5378fcd5d8c2b.tar.bz2
rails-8b270620d5a082546c4dc06f39c5378fcd5d8c2b.zip
Merge pull request #8361 from lucasmazza/typo
Fix typo in the Observers deprecation message.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/railtie.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/railtie.rb b/activerecord/lib/active_record/railtie.rb
index c3f13b2dac..1081b82bc6 100644
--- a/activerecord/lib/active_record/railtie.rb
+++ b/activerecord/lib/active_record/railtie.rb
@@ -119,7 +119,7 @@ module ActiveRecord
unless app.config.active_record.delete(:observers).nil?
ActiveSupport::Deprecation.warn <<-EOF.strip_heredoc, []
Active Record Observers has been extracted out of Rails into a gem.
- Please use callbaks or add `rails-observers` to your Gemfile to use observers.
+ Please use callbacks or add `rails-observers` to your Gemfile to use observers.
To disable this message remove the `observers` option from your
`config/application.rb` or from your initializers.