aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorGanesh Kumar <ganesh.dc@gmail.com>2011-05-21 13:55:52 +0530
committerGanesh Kumar <ganesh.dc@gmail.com>2011-05-21 13:55:52 +0530
commit3d789ea4b9aed42680de3b3bb359a19cd4a48f57 (patch)
treefb2c65550fa857e5becafb1cb2dbebca651959a6 /activerecord
parentb134e0f44555a7cb45324e4eee76efeea46d7e6d (diff)
downloadrails-3d789ea4b9aed42680de3b3bb359a19cd4a48f57.tar.gz
rails-3d789ea4b9aed42680de3b3bb359a19cd4a48f57.tar.bz2
rails-3d789ea4b9aed42680de3b3bb359a19cd4a48f57.zip
ActionMailer deliver method Documentation corrected Ticket #761
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/observer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/observer.rb b/activerecord/lib/active_record/observer.rb
index c723436330..5a5351b517 100644
--- a/activerecord/lib/active_record/observer.rb
+++ b/activerecord/lib/active_record/observer.rb
@@ -11,7 +11,7 @@ module ActiveRecord
#
# class CommentObserver < ActiveRecord::Observer
# def after_save(comment)
- # Notifications.deliver_comment("admin@do.com", "New comment was posted", comment)
+ # Notifications.comment("admin@do.com", "New comment was posted", comment).deliver
# end
# end
#