aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/README.rdoc
diff options
context:
space:
mode:
authorWaynn Lue <WLGades@gmail.com>2013-03-18 15:47:41 -0700
committerWaynn Lue <WLGades@gmail.com>2013-03-18 15:47:41 -0700
commitf1563f4226a6c7b041e55f8569b2aaccf721b23d (patch)
tree809683577bb92839ea813f88e96f668e9105c7c1 /actionmailer/README.rdoc
parentb5c6a9e5287584a73958e00184d55ed4638f36ac (diff)
downloadrails-f1563f4226a6c7b041e55f8569b2aaccf721b23d.tar.gz
rails-f1563f4226a6c7b041e55f8569b2aaccf721b23d.tar.bz2
rails-f1563f4226a6c7b041e55f8569b2aaccf721b23d.zip
"overwritten" is one word
Diffstat (limited to 'actionmailer/README.rdoc')
-rw-r--r--actionmailer/README.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc
index 7e684afe42..4d78d6142a 100644
--- a/actionmailer/README.rdoc
+++ b/actionmailer/README.rdoc
@@ -78,7 +78,7 @@ Or you can just chain the methods together like:
It is possible to set default values that will be used in every method in your Action Mailer class. To implement this functionality, you just call the public class method <tt>default</tt> which you get for free from ActionMailer::Base. This method accepts a Hash as the parameter. You can use any of the headers e-mail messages has, like <tt>:from</tt> as the key. You can also pass in a string as the key, like "Content-Type", but Action Mailer does this out of the box for you, so you won't need to worry about that. Finally, it is also possible to pass in a Proc that will get evaluated when it is needed.
-Note that every value you set with this method will get over written if you use the same key in your mailer method.
+Note that every value you set with this method will get overwritten if you use the same key in your mailer method.
Example: