aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-09-03 07:52:18 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-09-03 17:22:36 +0530
commitddc05b61e00ce1da5e4fb374af8daabff2341222 (patch)
tree81f9ca01756637037b8ae44e212496ac47cfb3ed /actionview
parent43dd11853984055f8c0ac330df88b92942f0c89b (diff)
downloadrails-ddc05b61e00ce1da5e4fb374af8daabff2341222.tar.gz
rails-ddc05b61e00ce1da5e4fb374af8daabff2341222.tar.bz2
rails-ddc05b61e00ce1da5e4fb374af8daabff2341222.zip
adding description of return value [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/template.rb2
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?