diff options
author | Peter Jaros <peter.a.jaros@gmail.com> | 2013-07-24 15:23:48 -0400 |
---|---|---|
committer | Peter Jaros <peter.a.jaros@gmail.com> | 2013-07-24 15:23:48 -0400 |
commit | 2e0a9941a855cb3283daa43942eda68e478ff61d (patch) | |
tree | 77b2f48b4df0dd9d8bf65eb03a2e3f16fdcaaab0 /guides | |
parent | fa265346a95b2264f163f170e8322afb223063c7 (diff) | |
download | rails-2e0a9941a855cb3283daa43942eda68e478ff61d.tar.gz rails-2e0a9941a855cb3283daa43942eda68e478ff61d.tar.bz2 rails-2e0a9941a855cb3283daa43942eda68e478ff61d.zip |
AM Guide: Should be "different formats".
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_mailer_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index 87a08e8661..bf34799eb3 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -378,7 +378,7 @@ Just like with controller views, use `yield` to render the view inside the layout. You can also pass in a `layout: 'layout_name'` option to the render call inside -the format block to specify different layouts for different actions: +the format block to specify different layouts for different formats: ```ruby class UserMailer < ActionMailer::Base |