aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Davydov <antondavydov.o@gmail.com>2015-03-15 23:29:30 +0300
committerAnton Davydov <antondavydov.o@gmail.com>2015-03-15 23:32:24 +0300
commit91744696a4870baf2becac1f1bfe9066b23d21b9 (patch)
tree09e8cc38a863ba3b354bd8dfc153b6e291988abb
parent575839d75fa85731facb99489e53b45f5f041b51 (diff)
downloadrails-91744696a4870baf2becac1f1bfe9066b23d21b9.tar.gz
rails-91744696a4870baf2becac1f1bfe9066b23d21b9.tar.bz2
rails-91744696a4870baf2becac1f1bfe9066b23d21b9.zip
[skip ci] Fix typo in actionmailer documentation
-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 3e5125f72e..c7f09ed192 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -21,7 +21,7 @@ module ActionMailer
# the mailer views, options on the mail itself such as the <tt>:from</tt> address, and attachments.
#
# class ApplicationMailer < ActionMailer::Base
- # default from: 'from@exmaple.com'
+ # default from: 'from@example.com'
# layout 'mailer'
# end
#