aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-05-21 23:38:26 +0200
committerXavier Noria <fxn@hashref.com>2008-05-21 23:39:07 +0200
commite89b4bc0c787d7010ba653d1cf0e0f5a2766b2f5 (patch)
tree8c10bc050153790f6d7c945ab41cb275eace6fe0 /actionmailer
parent291333d93a443d378e8837d97e04f06911ff85ab (diff)
downloadrails-e89b4bc0c787d7010ba653d1cf0e0f5a2766b2f5.tar.gz
rails-e89b4bc0c787d7010ba653d1cf0e0f5a2766b2f5.tar.bz2
rails-e89b4bc0c787d7010ba653d1cf0e0f5a2766b2f5.zip
gsub("ActionMailer", "Action Mailer")
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/lib/action_mailer/base.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index dbc6801146..030bb178da 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -5,12 +5,12 @@ require 'action_mailer/utils'
require 'tmail/net'
module ActionMailer #:nodoc:
- # ActionMailer allows you to send email from your application using a mailer model and views.
+ # Action Mailer allows you to send email from your application using a mailer model and views.
#
#
# = Mailer Models
#
- # To use ActionMailer, you need to create a mailer model.
+ # To use Action Mailer, you need to create a mailer model.
#
# $ script/generate mailer Notifier
#
@@ -157,7 +157,7 @@ module ActionMailer #:nodoc:
# end
# end
#
- # Multipart messages can also be used implicitly because ActionMailer will automatically
+ # Multipart messages can also be used implicitly because Action Mailer will automatically
# detect and use multipart templates, where each template is named after the name of the action, followed
# by the content type. Each such detected template will be added as separate part to the message.
#