aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib
diff options
context:
space:
mode:
authorBen Oakes <hello@benjaminoakes.com>2012-06-20 12:09:53 -0300
committerBen Oakes <hello@benjaminoakes.com>2012-06-20 12:09:53 -0300
commitd0f088e7f5668cafa5c9d4090fa1f209ce0e554a (patch)
tree3f3f80bc967e9c59a5dd6db994ad03fc2d4ab2de /actionmailer/lib
parent065e02d04b8c249a02b63a4de8e798c950c40a94 (diff)
downloadrails-d0f088e7f5668cafa5c9d4090fa1f209ce0e554a.tar.gz
rails-d0f088e7f5668cafa5c9d4090fa1f209ce0e554a.tar.bz2
rails-d0f088e7f5668cafa5c9d4090fa1f209ce0e554a.zip
Fix delivery_method usage
Diffstat (limited to 'actionmailer/lib')
-rw-r--r--actionmailer/lib/action_mailer/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 4f0cff0612..5431e6d8a7 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -338,7 +338,7 @@ module ActionMailer #:nodoc:
#
# * <tt>delivery_method</tt> - Defines a delivery method. Possible values are <tt>:smtp</tt> (default),
# <tt>:sendmail</tt>, <tt>:test</tt>, and <tt>:file</tt>. Or you may provide a custom delivery method
- # object eg. MyOwnDeliveryMethodClass.new. See the Mail gem documentation on the interface you need to
+ # object e.g. MyOwnDeliveryMethodClass (not MyOwnDeliveryMethodClass.new). See the Mail gem documentation on the interface you need to
# implement for a custom delivery agent.
#
# * <tt>perform_deliveries</tt> - Determines whether emails are actually sent from Action Mailer when you