diff options
author | Gavin Stark <g.stark@realdigitalmedia.com> | 2010-01-17 16:11:16 -0500 |
---|---|---|
committer | Marshall Huss <mwhuss@gmail.com> | 2010-01-18 00:21:45 -0500 |
commit | 6e45bf53fb594cccb25ff38bdae235710c869419 (patch) | |
tree | f20be588a7a5a119c8d8ef8c23a8dbffc4292f32 /activemodel | |
parent | aa8cbb79dcb21ad3cf960b0058ee5576f35c422c (diff) | |
download | rails-6e45bf53fb594cccb25ff38bdae235710c869419.tar.gz rails-6e45bf53fb594cccb25ff38bdae235710c869419.tar.bz2 rails-6e45bf53fb594cccb25ff38bdae235710c869419.zip |
Fixing documentation on ActiveModel::Observer#observed_classes
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/observing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/observing.rb b/activemodel/lib/active_model/observing.rb index 69cb58f41b..ed6fb47c7e 100644 --- a/activemodel/lib/active_model/observing.rb +++ b/activemodel/lib/active_model/observing.rb @@ -149,7 +149,7 @@ module ActiveModel # # class AuditObserver < ActiveModel::Observer # def self.observed_classes - # [AccountObserver, BalanceObserver] + # [Account, Balance] # end # end def observed_classes |