aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-06-12 08:21:35 +0900
committerGitHub <noreply@github.com>2018-06-12 08:21:35 +0900
commit3fe81d31c320738219e56d1684d219d65167f2fc (patch)
tree62a340b91de294085dec581575c6c538bfd710d2 /guides
parent7a35066acf497145c29ca8d3fb7ecc000706acae (diff)
parentf06fc27fa2a0585a81a7775036bea9934a2ab5f1 (diff)
downloadrails-3fe81d31c320738219e56d1684d219d65167f2fc.tar.gz
rails-3fe81d31c320738219e56d1684d219d65167f2fc.tar.bz2
rails-3fe81d31c320738219e56d1684d219d65167f2fc.zip
Merge pull request #33123 from siasmj/master
Add comma to example in guides/source/active_storage_overview.md [ci skip]
Diffstat (limited to 'guides')
-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
)
```