aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib/active_storage
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2018-03-05 13:27:14 -0500
committerGeorge Claghorn <george@basecamp.com>2018-03-05 13:27:14 -0500
commite83575ff533690db86c92447a539d76b648e9fed (patch)
tree8f4ae5cb8db7999384614e53e1c874bce7bfbc4f /activestorage/lib/active_storage
parent263f01d93da118dc150c6ac816e70dcf10de2608 (diff)
downloadrails-e83575ff533690db86c92447a539d76b648e9fed.tar.gz
rails-e83575ff533690db86c92447a539d76b648e9fed.tar.bz2
rails-e83575ff533690db86c92447a539d76b648e9fed.zip
Correct the ActiveStorage::Service#download_chunk docs [ci skip]
Diffstat (limited to 'activestorage/lib/active_storage')
-rw-r--r--activestorage/lib/active_storage/service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/lib/active_storage/service.rb b/activestorage/lib/active_storage/service.rb
index f2fda2d5cf..949969fc95 100644
--- a/activestorage/lib/active_storage/service.rb
+++ b/activestorage/lib/active_storage/service.rb
@@ -73,7 +73,7 @@ module ActiveStorage
raise NotImplementedError
end
- # Return the partial content of the file at the +key+ between the +start+ and +stop+ byte offsets.
+ # Return the partial content in the byte +range+ of the file at the +key+.
def download_chunk(key, range)
raise NotImplementedError
end