diff options
author | Jeffrey Guenther <guenther.jeffrey@gmail.com> | 2017-11-20 17:52:07 -0800 |
---|---|---|
committer | Jeffrey Guenther <guenther.jeffrey@gmail.com> | 2017-11-20 17:52:07 -0800 |
commit | c8370dc765e556ea9c01981a304cb7176bac08f9 (patch) | |
tree | 895d249e6c6d7bdcb1228354a6c83aec0cfbf325 /guides/source | |
parent | 3718093c8326e1dad2adb50f9d5c6795f7d8ecf5 (diff) | |
download | rails-c8370dc765e556ea9c01981a304cb7176bac08f9.tar.gz rails-c8370dc765e556ea9c01981a304cb7176bac08f9.tar.bz2 rails-c8370dc765e556ea9c01981a304cb7176bac08f9.zip |
Remove mention of filename from download
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_storage_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index 4b31281f80..9d7d09983f 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -254,7 +254,7 @@ url_for(user.avatar) ``` To create a download link, use the `rails_blob_{path|url}` helper. Using this -helper will allow you to set the filename and disposition. +helper will allow you to set disposition. ```ruby rails_blob_path(user.avatar, disposition: "attachment") |