diff options
author | Damien Mathieu <42@dmathieu.com> | 2012-06-20 18:23:57 +0300 |
---|---|---|
committer | Damien Mathieu <42@dmathieu.com> | 2012-06-20 18:23:57 +0300 |
commit | a4726d380508453d2fe943e22cfa91b3f9df3e09 (patch) | |
tree | e6e9cbf63d632651428d3f5a707fc0d5d7f64691 /actionmailer | |
parent | d0f088e7f5668cafa5c9d4090fa1f209ce0e554a (diff) | |
download | rails-a4726d380508453d2fe943e22cfa91b3f9df3e09.tar.gz rails-a4726d380508453d2fe943e22cfa91b3f9df3e09.tar.bz2 rails-a4726d380508453d2fe943e22cfa91b3f9df3e09.zip |
just specify what's to be done, not what's not to be.
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 5431e6d8a7..95c1f9289f 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 e.g. MyOwnDeliveryMethodClass (not MyOwnDeliveryMethodClass.new). See the Mail gem documentation on the interface you need to + # object e.g. MyOwnDeliveryMethodClass. 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 |