diff options
author | yui-knk <spiketeika@gmail.com> | 2014-12-18 13:07:32 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2014-12-18 13:07:32 +0900 |
commit | 609d3a84752818b21d257191bbed58ce2148a36e (patch) | |
tree | e67e72dc3df77d3b6ad1bed52c3e1b2d318bfeb5 /actionview | |
parent | 3f6a472d921cfdc8e388e7fb97cda0b07bfe4d5c (diff) | |
download | rails-609d3a84752818b21d257191bbed58ce2148a36e.tar.gz rails-609d3a84752818b21d257191bbed58ce2148a36e.tar.bz2 rails-609d3a84752818b21d257191bbed58ce2148a36e.zip |
[ci skip] Fix HTML format on comment
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/capture_helper.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/capture_helper.rb b/actionview/lib/action_view/helpers/capture_helper.rb index 75d1634b2e..5a3223968f 100644 --- a/actionview/lib/action_view/helpers/capture_helper.rb +++ b/actionview/lib/action_view/helpers/capture_helper.rb @@ -31,7 +31,8 @@ module ActionView # <head><title><%= @greeting %></title></head> # <body> # <b><%= @greeting %></b> - # </body></html> + # </body> + # </html> # def capture(*args) value = nil |