diff options
author | Erich Menge <erich.menge@me.com> | 2012-08-15 08:21:30 -0500 |
---|---|---|
committer | Erich Menge <erich.menge@me.com> | 2012-08-15 08:21:30 -0500 |
commit | 6e84026091d24ca6b90499e43ff1bab07772acd4 (patch) | |
tree | 971191e8322acb4a13b126136aea8ae88e882e32 | |
parent | 38e3e1a652ab0c99d9c54b11cf7e4783ae3f4baa (diff) | |
download | rails-6e84026091d24ca6b90499e43ff1bab07772acd4.tar.gz rails-6e84026091d24ca6b90499e43ff1bab07772acd4.tar.bz2 rails-6e84026091d24ca6b90499e43ff1bab07772acd4.zip |
Minor language fix. [ci skip]
-rw-r--r-- | actionpack/lib/action_controller/metal/data_streaming.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/data_streaming.rb b/actionpack/lib/action_controller/metal/data_streaming.rb index 379ff97048..5422cb93c4 100644 --- a/actionpack/lib/action_controller/metal/data_streaming.rb +++ b/actionpack/lib/action_controller/metal/data_streaming.rb @@ -76,8 +76,8 @@ module ActionController #:nodoc: end # Avoid having to pass an open file handle as the response body. - # Rack::Sendfile will usually intercepts the response and just uses - # the path directly, so no reason to open the file. + # Rack::Sendfile will usually intercept the response and uses + # the path directly, so there is no reason to open the file. class FileBody #:nodoc: attr_reader :to_path |