diff options
author | Tom Kadwill <tomkadwill@gmail.com> | 2016-04-10 14:31:32 +0100 |
---|---|---|
committer | Tom Kadwill <tomkadwill@gmail.com> | 2016-04-10 14:31:32 +0100 |
commit | 83ac216933fef497e6d6184275a8e8e8b8d7997f (patch) | |
tree | 240507f5b0c74ca7b090bfff0e4b2594d03e449a /actionmailer | |
parent | 87c2c070c4cf1b62ac364c53496a2da000fbf9d6 (diff) | |
download | rails-83ac216933fef497e6d6184275a8e8e8b8d7997f.tar.gz rails-83ac216933fef497e6d6184275a8e8e8b8d7997f.tar.bz2 rails-83ac216933fef497e6d6184275a8e8e8b8d7997f.zip |
Update ActionMailer Views documentation [ci skip]
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 a223cf82a1..3df524580c 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -86,7 +86,7 @@ module ActionMailer # Like Action Controller, each mailer class has a corresponding view directory in which each # method of the class looks for a template with its name. # - # To define a template to be used with a mailing, create an <tt>.erb</tt> file with the same + # To define a template to be used with a mailer, create an <tt>.erb</tt> file with the same # name as the method in your mailer model. For example, in the mailer defined above, the template at # <tt>app/views/notifier_mailer/welcome.text.erb</tt> would be used to generate the email. # |