diff options
author | Santosh Wadghule <santosh.wadghule@gmail.com> | 2014-07-14 00:05:00 +0530 |
---|---|---|
committer | Santosh Wadghule <santosh.wadghule@gmail.com> | 2014-07-14 00:14:47 +0530 |
commit | dfee0327b5528caacfe277ccf4d0168b7b96cc05 (patch) | |
tree | 8628518a5baf6dfaa7dd646e235f9b4c14b34754 /actionmailer/lib | |
parent | ccac6082bd4265f4827cc8bf9748c983d0a1c6c6 (diff) | |
download | rails-dfee0327b5528caacfe277ccf4d0168b7b96cc05.tar.gz rails-dfee0327b5528caacfe277ccf4d0168b7b96cc05.tar.bz2 rails-dfee0327b5528caacfe277ccf4d0168b7b96cc05.zip |
Fix typos like `a html` to `an html` and 'an mail' to 'an email'. [ci skip]
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 135cf35ac0..048f2ddc35 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -394,7 +394,7 @@ module ActionMailer # implement for a custom delivery agent. # # * <tt>perform_deliveries</tt> - Determines whether emails are actually sent from Action Mailer when you - # call <tt>.deliver</tt> on an mail message or on an Action Mailer method. This is on by default but can + # call <tt>.deliver</tt> on an email message or on an Action Mailer method. This is on by default but can # be turned off to aid in functional testing. # # * <tt>deliveries</tt> - Keeps an array of all the emails sent out through the Action Mailer with |