aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAditya Sanghi <asanghi@me.com>2010-10-29 10:13:48 +0530
committerAditya Sanghi <asanghi@me.com>2010-10-29 10:13:48 +0530
commit3ca16650389aa0d186a441f74b54a409cce4b392 (patch)
tree3a7dd6cc352789157158c6c9c612aafac8327265
parent74f3f74b6e6a33abe645a5e9d1bb04cb58676575 (diff)
downloadrails-3ca16650389aa0d186a441f74b54a409cce4b392.tar.gz
rails-3ca16650389aa0d186a441f74b54a409cce4b392.tar.bz2
rails-3ca16650389aa0d186a441f74b54a409cce4b392.zip
reverting last change to javascript helper; needs more investigation
-rw-r--r--actionpack/lib/action_view/helpers/javascript_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb
index f392d92e75..cd3a3eac80 100644
--- a/actionpack/lib/action_view/helpers/javascript_helper.rb
+++ b/actionpack/lib/action_view/helpers/javascript_helper.rb
@@ -65,7 +65,7 @@ module ActionView
# //]]>
# </script>
#
- # +html_options+ may be a hash of attributes for the <tt><script></tt>
+ # +html_options+ may be a hash of attributes for the <tt>\<script></tt>
# tag. Example:
# javascript_tag "alert('All is good')", :defer => 'defer'
# # => <script defer="defer" type="text/javascript">alert('All is good')</script>