From 1d40743af7a98c22faec11af8d1a9f7fe322e67a Mon Sep 17 00:00:00 2001 From: kenta-s Date: Wed, 28 Dec 2016 18:57:53 +0900 Subject: [PATCH] Fix typo in action_view/template.rb [ci skip] --- actionview/lib/action_view/template.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionview/lib/action_view/template.rb b/actionview/lib/action_view/template.rb index d56239789d..4b793c3b16 100644 --- a/actionview/lib/action_view/template.rb +++ b/actionview/lib/action_view/template.rb @@ -140,7 +140,7 @@ def initialize(source, identifier, handler, details) end # Returns whether the underlying handler supports streaming. If so, - # a streaming buffer *may* be passed when it start rendering. + # a streaming buffer *may* be passed when it starts rendering. def supports_streaming? handler.respond_to?(:supports_streaming?) && handler.supports_streaming? end -- GitLab