1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

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.