Merge pull request #8361 from lucasmazza/typo

Fix typo in the Observers deprecation message.
This commit is contained in:
Rafael Mendonça França 2012-11-28 17:13:00 -08:00
commit 8b270620d5

@ -119,7 +119,7 @@ class Railtie < Rails::Railtie # :nodoc:
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.