diff options
author | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-08-26 09:01:59 +0200 |
---|---|---|
committer | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-08-26 09:01:59 +0200 |
commit | 5e73ab0936b492aec24f41be269e0ae481287df0 (patch) | |
tree | 289031e75a916740b9aac6e397976093cdcfc882 | |
parent | 366e0fbd8d9bf1b5865edb930e795a17e5547a43 (diff) | |
download | rails-5e73ab0936b492aec24f41be269e0ae481287df0.tar.gz rails-5e73ab0936b492aec24f41be269e0ae481287df0.tar.bz2 rails-5e73ab0936b492aec24f41be269e0ae481287df0.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 |