diff options
author | Andrew Vida <andrewjvida@gmail.com> | 2015-01-14 14:43:58 -0500 |
---|---|---|
committer | Andrew Vida <andrewjvida@gmail.com> | 2015-01-14 14:43:58 -0500 |
commit | 29a2977af53685e434fd814d46c56b6766f34cd3 (patch) | |
tree | 421c492e6e970b15d68ef21bc754fe04a2e95604 /actionmailer/lib | |
parent | b23330745bddd6729f95fb8487e3ec4857e4bb58 (diff) | |
download | rails-29a2977af53685e434fd814d46c56b6766f34cd3.tar.gz rails-29a2977af53685e434fd814d46c56b6766f34cd3.tar.bz2 rails-29a2977af53685e434fd814d46c56b6766f34cd3.zip |
Correct views mail method sends in API docs
Diffstat (limited to 'actionmailer/lib')
-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 a30e3e65da..1b26da847e 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -55,7 +55,7 @@ module ActionMailer # # The mail method, if not passed a block, will inspect your views and send all the views with # the same name as the method, so the above action would send the +welcome.text.erb+ view - # file as well as the +welcome.text.html.erb+ view file in a +multipart/alternative+ email. + # file as well as the +welcome.html.erb+ view file in a +multipart/alternative+ email. # # If you want to explicitly render only certain templates, pass a block: # |