aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib
diff options
context:
space:
mode:
authorTom Kadwill <tomkadwill@gmail.com>2016-04-10 14:31:32 +0100
committerTom Kadwill <tomkadwill@gmail.com>2016-04-10 14:31:32 +0100
commit83ac216933fef497e6d6184275a8e8e8b8d7997f (patch)
tree240507f5b0c74ca7b090bfff0e4b2594d03e449a /actionmailer/lib
parent87c2c070c4cf1b62ac364c53496a2da000fbf9d6 (diff)
downloadrails-83ac216933fef497e6d6184275a8e8e8b8d7997f.tar.gz
rails-83ac216933fef497e6d6184275a8e8e8b8d7997f.tar.bz2
rails-83ac216933fef497e6d6184275a8e8e8b8d7997f.zip
Update ActionMailer Views documentation [ci skip]
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 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.
#