diff options
author | Akira Matsuda <ronnie@dio.jp> | 2011-03-07 05:52:47 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2011-03-07 05:52:47 +0900 |
commit | 112c8025791e51209f1aa8f7b8623f1a5ed3e015 (patch) | |
tree | 149d64b85af403bcbf8fc5ddd05938c35e6da0ae /actionmailer | |
parent | d91be365980ff2614966f65907ca22b0f5b6d315 (diff) | |
download | rails-112c8025791e51209f1aa8f7b8623f1a5ed3e015.tar.gz rails-112c8025791e51209f1aa8f7b8623f1a5ed3e015.tar.bz2 rails-112c8025791e51209f1aa8f7b8623f1a5ed3e015.zip |
s/a/an/
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/README.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc index fb93fd1080..2db6140d64 100644 --- a/actionmailer/README.rdoc +++ b/actionmailer/README.rdoc @@ -74,7 +74,7 @@ Or you can just chain the methods together like: == Receiving emails -To receive emails, you need to implement a public instance method called <tt>receive</tt> that takes a +To receive emails, you need to implement a public instance method called <tt>receive</tt> that takes an 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 email object and calls the receive instance method. |