diff options
author | Alexey Vakhov <vakhov@gmail.com> | 2013-04-23 10:30:31 +0400 |
---|---|---|
committer | Alexey Vakhov <vakhov@gmail.com> | 2013-04-23 10:31:35 +0400 |
commit | e1df81c2050fee6758eaad073bc56795cfc9f467 (patch) | |
tree | d055f62392bc3da2f727f6ec2330d020ad694dd6 /actionmailer/lib | |
parent | a145c1b4afb880f077a1811c3aec29d40bbcad81 (diff) | |
download | rails-e1df81c2050fee6758eaad073bc56795cfc9f467.tar.gz rails-e1df81c2050fee6758eaad073bc56795cfc9f467.tar.bz2 rails-e1df81c2050fee6758eaad073bc56795cfc9f467.zip |
Remove superfluous `self.` in Action Mailer mail method documetation
Notation with `self` was sugestted at 0b05acd, when self.defaults was
extlib_inheritable_accessor. But now all Action Mailer examples are
without this self. It's nicer.
Diffstat (limited to 'actionmailer/lib')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 351c14be7d..1fff958ceb 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -596,9 +596,9 @@ module ActionMailer # class method: # # class Notifier < ActionMailer::Base - # self.default from: 'no-reply@test.lindsaar.net', - # bcc: 'email_logger@test.lindsaar.net', - # reply_to: 'bounces@test.lindsaar.net' + # default from: 'no-reply@test.lindsaar.net', + # bcc: 'email_logger@test.lindsaar.net', + # reply_to: 'bounces@test.lindsaar.net' # end # # If you need other headers not listed above, you can either pass them in |