From e83575ff533690db86c92447a539d76b648e9fed Mon Sep 17 00:00:00 2001 From: George Claghorn Date: Mon, 5 Mar 2018 13:27:14 -0500 Subject: [PATCH] Correct the ActiveStorage::Service#download_chunk docs [ci skip] --- activestorage/lib/active_storage/service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ def download(key) 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