aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilherme Goettems Schneider <guigs81@gmail.com>2015-05-26 13:49:41 -0300
committerGuilherme Goettems Schneider <guigs81@gmail.com>2015-05-26 13:49:41 -0300
commitac6180ec1b25563405cbcb868804a098424e3a0f (patch)
tree97912b83f591a50219d93d4f40ffbdd115b2667c
parentb1f6be9b5ea9eae4f6c5762852027d4808a037e2 (diff)
downloadrails-ac6180ec1b25563405cbcb868804a098424e3a0f.tar.gz
rails-ac6180ec1b25563405cbcb868804a098424e3a0f.tar.bz2
rails-ac6180ec1b25563405cbcb868804a098424e3a0f.zip
Fix email with name format in Guides. [ci skip]
-rw-r--r--guides/source/action_mailer_basics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md
index 92a4081233..bf3bf5d19e 100644
--- a/guides/source/action_mailer_basics.md
+++ b/guides/source/action_mailer_basics.md
@@ -344,7 +344,7 @@ The same format can be used to set carbon copy (Cc:) and blind carbon copy
Sometimes you wish to show the name of the person instead of just their email
address when they receive the email. The trick to doing that is to format the
-email address in the format `"Full Name <email>"`.
+email address in the format `"Full Name" <email>`.
```ruby
def welcome_email(user)