aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-26 13:54:03 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-26 13:54:03 -0300
commit79fb8f3593454d5b89d7df87632e1faaf1f5674c (patch)
tree97912b83f591a50219d93d4f40ffbdd115b2667c /guides
parentb1f6be9b5ea9eae4f6c5762852027d4808a037e2 (diff)
parentac6180ec1b25563405cbcb868804a098424e3a0f (diff)
downloadrails-79fb8f3593454d5b89d7df87632e1faaf1f5674c.tar.gz
rails-79fb8f3593454d5b89d7df87632e1faaf1f5674c.tar.bz2
rails-79fb8f3593454d5b89d7df87632e1faaf1f5674c.zip
Merge pull request #20310 from guigs/patch-1
Fix email with name format in Guides. [ci skip]
Diffstat (limited to 'guides')
-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)