diff options
author | George Claghorn <george@basecamp.com> | 2017-10-22 23:14:44 -0400 |
---|---|---|
committer | George Claghorn <george@basecamp.com> | 2017-10-22 23:14:44 -0400 |
commit | f4d1aa5310284ebceb51970140fa08f6c8ea19b6 (patch) | |
tree | 70c1adaecc60253364379666e2422d3138f4d9f6 /activestorage/lib | |
parent | 2b6cd16637ddfe099db157d3e02dd34e41ef9b5d (diff) | |
download | rails-f4d1aa5310284ebceb51970140fa08f6c8ea19b6.tar.gz rails-f4d1aa5310284ebceb51970140fa08f6c8ea19b6.tar.bz2 rails-f4d1aa5310284ebceb51970140fa08f6c8ea19b6.zip |
Use the indicative mood consistently [ci skip]
Diffstat (limited to 'activestorage/lib')
-rw-r--r-- | activestorage/lib/active_storage/downloading.rb | 2 |
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) } |