1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add comma to example in guides/source/active_storage_overview.md [ci skip]

This commit is contained in:
Matt Sias 2018-06-11 17:57:12 -05:00
parent 7a35066acf
commit f06fc27fa2

View file

@ -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
)
```