diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-01-20 15:04:36 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-01-20 15:04:36 +0100 |
commit | 080fc9cad39a98b6973cd7a7106f1bcb10d3ad02 (patch) | |
tree | 9cd1b01baaf7d3dd7dac0035e83546cc65e07010 /actionmailer/lib | |
parent | dfac4ced1d108d10ffd52fb79c354a15808d7969 (diff) | |
download | rails-080fc9cad39a98b6973cd7a7106f1bcb10d3ad02.tar.gz rails-080fc9cad39a98b6973cd7a7106f1bcb10d3ad02.tar.bz2 rails-080fc9cad39a98b6973cd7a7106f1bcb10d3ad02.zip |
docs should say `email` not `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 a30e3e65da..41db62cc58 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -51,7 +51,7 @@ module ActionMailer # * <tt>mail</tt> - Allows you to specify email to be sent. # # The hash passed to the mail method allows you to specify any header that a <tt>Mail::Message</tt> - # will accept (any valid Email header including optional fields). + # will accept (any valid email header including optional fields). # # 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 |