diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2015-09-07 07:48:12 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2015-09-07 07:48:12 +0200 |
commit | b5a489fc9c2c7939bc4b553b2a0a4e74f1179d56 (patch) | |
tree | f2c74d29e88c798bf7b40077c97ac1abb26e5b12 /actionview/lib/action_view | |
parent | ff21abee1f2186ce8eb1cc436344ed170d226b26 (diff) | |
parent | ddc05b61e00ce1da5e4fb374af8daabff2341222 (diff) | |
download | rails-b5a489fc9c2c7939bc4b553b2a0a4e74f1179d56.tar.gz rails-b5a489fc9c2c7939bc4b553b2a0a4e74f1179d56.tar.bz2 rails-b5a489fc9c2c7939bc4b553b2a0a4e74f1179d56.zip |
Merge pull request #21480 from amitsuroliya/add_return_value_description
adding description of return value [ci skip]
Diffstat (limited to 'actionview/lib/action_view')
-rw-r--r-- | actionview/lib/action_view/template.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/template.rb b/actionview/lib/action_view/template.rb index e232808dcb..0ed208f27e 100644 --- a/actionview/lib/action_view/template.rb +++ b/actionview/lib/action_view/template.rb @@ -141,7 +141,7 @@ module ActionView @compile_mutex = Mutex.new end - # Returns if the underlying handler supports streaming. If so, + # Returns whether the underlying handler supports streaming. If so, # a streaming buffer *may* be passed when it start rendering. def supports_streaming? handler.respond_to?(:supports_streaming?) && handler.supports_streaming? |