aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/javascript_helper.rb
diff options
context:
space:
mode:
authorAlexey Mahotkin <squadette@gmail.com>2010-09-16 17:10:36 +0400
committerAlexey Mahotkin <squadette@gmail.com>2010-09-16 17:10:36 +0400
commitdfebdb1b033c033b7a39615a39d9d4ac3052e61d (patch)
treeb4b3fa7c7927f0132789cb875ff001710f085499 /actionpack/lib/action_view/helpers/javascript_helper.rb
parent6f3ac42550ed6780427e723de61f351537d582bf (diff)
downloadrails-dfebdb1b033c033b7a39615a39d9d4ac3052e61d.tar.gz
rails-dfebdb1b033c033b7a39615a39d9d4ac3052e61d.tar.bz2
rails-dfebdb1b033c033b7a39615a39d9d4ac3052e61d.zip
Tiny fixes to rdoc
Diffstat (limited to 'actionpack/lib/action_view/helpers/javascript_helper.rb')
-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>