diff options
author | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-08-26 09:01:59 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-26 14:23:58 +0200 |
commit | d9f6e1693751b619cd2dffe4ca202bd5f493c90c (patch) | |
tree | fb872a9d433b714079955a415c2e28c9967ba136 | |
parent | 5dd92726a96025b902e9f9254f3ade30d2364471 (diff) | |
download | rails-d9f6e1693751b619cd2dffe4ca202bd5f493c90c.tar.gz rails-d9f6e1693751b619cd2dffe4ca202bd5f493c90c.tar.bz2 rails-d9f6e1693751b619cd2dffe4ca202bd5f493c90c.zip |
Fix capture_helper.rb api documentation, unescaped script tag was breaking it on the content_for explanation
-rw-r--r-- | actionpack/lib/action_view/helpers/capture_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/capture_helper.rb b/actionpack/lib/action_view/helpers/capture_helper.rb index 89e95e8694..52e71a4c3a 100644 --- a/actionpack/lib/action_view/helpers/capture_helper.rb +++ b/actionpack/lib/action_view/helpers/capture_helper.rb @@ -106,7 +106,7 @@ module ActionView # <%= javascript_include_tag :defaults %> # <% end %> # - # That will place <script> tags for Prototype, Scriptaculous, and application.js (if it exists) + # That will place <tt>script</tt> tags for Prototype, Scriptaculous, and application.js (if it exists) # on the page; this technique is useful if you'll only be using these scripts in a few views. # # Note that content_for concatenates the blocks it is given for a particular |