From a647277fb9172f8434d961e6fa3b90f234b67c4e Mon Sep 17 00:00:00 2001 From: Zachary Scott Date: Sun, 12 Apr 2015 13:29:58 -0700 Subject: [PATCH] Since the delegator wasn't identified earlier, we should here [ci skip] --- actionmailer/lib/action_mailer/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 15f62a563f83c..6ddc4c9596657 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 ActionMailer::MessageDelivery class is a wrapper around a delegate that will call - # your method to generate the mail. If you want direct access to Mail::Message you can - # call the message method on the ActionMailer::MessageDelivery object. + # your method to generate the mail. If you want direct access to delegator, or Mail::Message, + # you can call the message method on the ActionMailer::MessageDelivery object. # # NotifierMailer.welcome(User.first).message # => a Mail::Message object #