aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_storage_overview.md
diff options
context:
space:
mode:
authorMatt Sias <siasmj@uwec.edu>2018-06-11 17:57:12 -0500
committerMatt Sias <siasmj@uwec.edu>2018-06-11 17:57:12 -0500
commitf06fc27fa2a0585a81a7775036bea9934a2ab5f1 (patch)
tree62a340b91de294085dec581575c6c538bfd710d2 /guides/source/active_storage_overview.md
parent7a35066acf497145c29ca8d3fb7ecc000706acae (diff)
downloadrails-f06fc27fa2a0585a81a7775036bea9934a2ab5f1.tar.gz
rails-f06fc27fa2a0585a81a7775036bea9934a2ab5f1.tar.bz2
rails-f06fc27fa2a0585a81a7775036bea9934a2ab5f1.zip
Add comma to example in guides/source/active_storage_overview.md [ci skip]
Diffstat (limited to 'guides/source/active_storage_overview.md')
-rw-r--r--guides/source/active_storage_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md
index e924dc1e0a..5f8beb7439 100644
--- a/guides/source/active_storage_overview.md
+++ b/guides/source/active_storage_overview.md
@@ -326,7 +326,7 @@ You can bypass the content type inference from the data by passing in
@message.image.attach(
io: File.open('/path/to/file'),
filename: 'file.pdf',
- content_type: 'application/pdf'
+ content_type: 'application/pdf',
identify: false
)
```