aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2017-10-22 23:14:44 -0400
committerGeorge Claghorn <george@basecamp.com>2017-10-22 23:14:44 -0400
commitf4d1aa5310284ebceb51970140fa08f6c8ea19b6 (patch)
tree70c1adaecc60253364379666e2422d3138f4d9f6 /activestorage
parent2b6cd16637ddfe099db157d3e02dd34e41ef9b5d (diff)
downloadrails-f4d1aa5310284ebceb51970140fa08f6c8ea19b6.tar.gz
rails-f4d1aa5310284ebceb51970140fa08f6c8ea19b6.tar.bz2
rails-f4d1aa5310284ebceb51970140fa08f6c8ea19b6.zip
Use the indicative mood consistently [ci skip]
Diffstat (limited to 'activestorage')
-rw-r--r--activestorage/lib/active_storage/downloading.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/lib/active_storage/downloading.rb b/activestorage/lib/active_storage/downloading.rb
index bcf42f610e..ceb7cce0c7 100644
--- a/activestorage/lib/active_storage/downloading.rb
+++ b/activestorage/lib/active_storage/downloading.rb
@@ -11,7 +11,7 @@ module ActiveStorage
end
end
- # Efficiently download blob data into the given file.
+ # Efficiently downloads blob data into the given file.
def download_blob_to(file) # :doc:
file.binmode
blob.download { |chunk| file.write(chunk) }