From f06fc27fa2a0585a81a7775036bea9934a2ab5f1 Mon Sep 17 00:00:00 2001 From: Matt Sias Date: Mon, 11 Jun 2018 17:57:12 -0500 Subject: [PATCH] Add comma to example in guides/source/active_storage_overview.md [ci skip] --- guides/source/active_storage_overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) ```