aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJudeArasu <judearasu@gmail.com>2011-03-05 06:10:35 +0530
committerJudeArasu <judearasu@gmail.com>2011-03-05 06:10:35 +0530
commit3463247da55e34e8c1eb77cf029cdbbf3def624c (patch)
tree87efdab79b6bd7fa6a37ca967eab8706450b4c71
parenta48f46d4fc6d62138f26d27de060c2f119842969 (diff)
downloadrails-3463247da55e34e8c1eb77cf029cdbbf3def624c.tar.gz
rails-3463247da55e34e8c1eb77cf029cdbbf3def624c.tar.bz2
rails-3463247da55e34e8c1eb77cf029cdbbf3def624c.zip
typo changes
-rw-r--r--actionmailer/README.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc
index 805a7a72ad..4290cc9bcd 100644
--- a/actionmailer/README.rdoc
+++ b/actionmailer/README.rdoc
@@ -77,7 +77,7 @@ Or you can just chain the methods together like:
To receive emails, you need to implement a public instance method called <tt>receive</tt> that takes a
email object as its single parameter. The Action Mailer framework has a corresponding class method,
which is also called <tt>receive</tt>, that accepts a raw, unprocessed email as a string, which it then turns
-into the tmail object and calls the receive instance method.
+into the email object and calls the receive instance method.
Example: