Fix typo in the Observers deprecation message. [ci skip]

This commit is contained in:
Lucas Mazza 2012-11-28 23:08:41 -02:00
parent 39e85b3b90
commit 54aed2387c
1 changed files with 1 additions and 1 deletions

View File

@ -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.