diff options
author | Juanito Fatas <katehuang0320@gmail.com> | 2014-09-16 15:32:38 +0800 |
---|---|---|
committer | Juanito Fatas <katehuang0320@gmail.com> | 2014-09-16 15:32:38 +0800 |
commit | 49f8356f33382cdefa01a3fa2c400583d97f7279 (patch) | |
tree | 966da03a54d6fb0b12c10b944e9e2f7d2c6cf453 /guides | |
parent | be83a1726b7cf0a8d1ffb80b957b3da6239cd6d1 (diff) | |
download | rails-49f8356f33382cdefa01a3fa2c400583d97f7279.tar.gz rails-49f8356f33382cdefa01a3fa2c400583d97f7279.tar.bz2 rails-49f8356f33382cdefa01a3fa2c400583d97f7279.zip |
[ci skip] Fix code snippet display in Action Mailer Basics guide.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_mailer_basics.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index f981d0da47..f6c974c87a 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -298,8 +298,7 @@ Action Mailer 3.0 makes inline attachments, which involved a lot of hacking in p ```html+erb <p>Hello there, this is our image</p> - <%= image_tag attachments['image.jpg'].url, alt: 'My Photo', - class: 'photos' %> + <%= image_tag attachments['image.jpg'].url, alt: 'My Photo', class: 'photos' %> ``` #### Sending Email To Multiple Recipients |