diff options
author | Zachary Scott <e@zzak.io> | 2015-04-12 13:29:58 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2015-04-12 13:29:58 -0700 |
commit | a647277fb9172f8434d961e6fa3b90f234b67c4e (patch) | |
tree | 1887a46502994345d4ce5f8d59b06c4a58b77e37 /actionmailer | |
parent | 1ffd603712e9bab3ff17bb712f0c979ab8c0901b (diff) | |
download | rails-a647277fb9172f8434d961e6fa3b90f234b67c4e.tar.gz rails-a647277fb9172f8434d961e6fa3b90f234b67c4e.tar.bz2 rails-a647277fb9172f8434d961e6fa3b90f234b67c4e.zip |
Since the delegator wasn't identified earlier, we should here [ci skip]
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 15f62a563f..6ddc4c9596 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -142,8 +142,8 @@ module ActionMailer # mail.deliver_now # generates and sends the email now # # The <tt>ActionMailer::MessageDelivery</tt> class is a wrapper around a delegate that will call - # your method to generate the mail. If you want direct access to <tt>Mail::Message</tt> you can - # call the <tt>message</tt> method on the <tt>ActionMailer::MessageDelivery</tt> object. + # your method to generate the mail. If you want direct access to delegator, or <tt>Mail::Message</tt>, + # you can call the <tt>message</tt> method on the <tt>ActionMailer::MessageDelivery</tt> object. # # NotifierMailer.welcome(User.first).message # => a Mail::Message object # |