aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/3_0_release_notes.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-04-30 18:06:23 +0200
committerYves Senn <yves.senn@gmail.com>2013-04-30 18:08:43 +0200
commit6cc1b4280e06e2f6f9447d408d2d5ddd7f469e44 (patch)
tree9df7251111aecd91bf85a162662277b631620f43 /guides/source/3_0_release_notes.md
parentd2fe72345aeea2a0874dfe5c665368b9fd543bcb (diff)
downloadrails-6cc1b4280e06e2f6f9447d408d2d5ddd7f469e44.tar.gz
rails-6cc1b4280e06e2f6f9447d408d2d5ddd7f469e44.tar.bz2
rails-6cc1b4280e06e2f6f9447d408d2d5ddd7f469e44.zip
more naming fixes.
* it's Action Mailer not ActionMailer * it's Action Pack not ActionPack * it's Active Support not ActiveSupport /cc @fxn
Diffstat (limited to 'guides/source/3_0_release_notes.md')
-rw-r--r--guides/source/3_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/3_0_release_notes.md b/guides/source/3_0_release_notes.md
index e7a174cc77..ebe8847168 100644
--- a/guides/source/3_0_release_notes.md
+++ b/guides/source/3_0_release_notes.md
@@ -580,7 +580,7 @@ Action Mailer has been given a new API with TMail being replaced out with the ne
* All mailers are now in `app/mailers` by default.
* Can now send email using new API with three methods: `attachments`, `headers` and `mail`.
-* ActionMailer now has native support for inline attachments using the `attachments.inline` method.
+* Action Mailer now has native support for inline attachments using the `attachments.inline` method.
* Action Mailer emailing methods now return `Mail::Message` objects, which can then be sent the `deliver` message to send itself.
* All delivery methods are now abstracted out to the Mail gem.
* The mail delivery method can accept a hash of all valid mail header fields with their value pair.