diff options
author | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2016-12-28 15:33:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-28 15:33:18 +0530 |
commit | 47cda2e1f655d38a204c4df88d780500c1e99316 (patch) | |
tree | bb97cc69b0560c5a4f6ff44ba86c3c576a2b90cd | |
parent | fce3c0cf64f053cf853764e8b47343a814b98d45 (diff) | |
parent | 1d40743af7a98c22faec11af8d1a9f7fe322e67a (diff) | |
download | rails-47cda2e1f655d38a204c4df88d780500c1e99316.tar.gz rails-47cda2e1f655d38a204c4df88d780500c1e99316.tar.bz2 rails-47cda2e1f655d38a204c4df88d780500c1e99316.zip |
Merge pull request #27479 from kenta-s/fix-typo-in-action_view-template
Fix typo in action_view/template.rb [ci skip]
-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 d56239789d..4b793c3b16 100644 --- a/actionview/lib/action_view/template.rb +++ b/actionview/lib/action_view/template.rb @@ -140,7 +140,7 @@ module ActionView 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 |