diff options
author | Floris Huetink <floris@avocado.nl> | 2011-08-09 15:48:34 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-08-13 16:22:34 -0700 |
commit | 9cf56c709b6ec2ab0479f664761596f6c64f8887 (patch) | |
tree | ad6d6af0f65eb3d2f231f15cf723633e8feeba40 /railties/guides | |
parent | 239e6153167c9babceaec2e3ca0e286166e0cea5 (diff) | |
download | rails-9cf56c709b6ec2ab0479f664761596f6c64f8887.tar.gz rails-9cf56c709b6ec2ab0479f664761596f6c64f8887.tar.bz2 rails-9cf56c709b6ec2ab0479f664761596f6c64f8887.zip |
Fixed typo (attachments method name was missing an s) in Action Mailer basics guide
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/action_mailer_basics.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_mailer_basics.textile b/railties/guides/source/action_mailer_basics.textile index f05d9dcf1c..5b2212d9cb 100644 --- a/railties/guides/source/action_mailer_basics.textile +++ b/railties/guides/source/action_mailer_basics.textile @@ -404,7 +404,7 @@ Will put the HTML part first, and the plain text part second. h4. Sending Emails with Attachments -Attachments can be added by using the +attachment+ method: +Attachments can be added by using the +attachments+ method: <ruby> class UserMailer < ActionMailer::Base |