aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-04-10 19:08:15 +0530
committerVipul A M <vipulnsward@gmail.com>2016-04-10 19:08:15 +0530
commitb8d1dbf9933e3d67e15cd06116164286ba15c6a7 (patch)
tree15e25fbac5b4a4fad569e4c600c61264b6d549a7 /actionmailer
parent9df157a97f7f02fd12ed6ff82cb97e1edf982a2e (diff)
parent83ac216933fef497e6d6184275a8e8e8b8d7997f (diff)
downloadrails-b8d1dbf9933e3d67e15cd06116164286ba15c6a7.tar.gz
rails-b8d1dbf9933e3d67e15cd06116164286ba15c6a7.tar.bz2
rails-b8d1dbf9933e3d67e15cd06116164286ba15c6a7.zip
Merge pull request #24487 from tomkadwill/action-mailer-base-docs
Update ActionMailer Mailer Models and Views documentation [ci skip]
Diffstat (limited to 'actionmailer')
-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.
#