aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authormiloops <miloops@gmail.com>2008-08-06 10:18:14 -0300
committermiloops <miloops@gmail.com>2008-08-06 10:18:14 -0300
commit3060715ea994c558e33d6bd827d9f085da73ac4a (patch)
treeeeb8462de5a360a822f2fe732dde724e58bf2734 /actionpack
parent43334d63844da05f2cde53c4f77c829e582163be (diff)
downloadrails-3060715ea994c558e33d6bd827d9f085da73ac4a.tar.gz
rails-3060715ea994c558e33d6bd827d9f085da73ac4a.tar.bz2
rails-3060715ea994c558e33d6bd827d9f085da73ac4a.zip
Added missing opening double quote to doc example in prototype helper.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/helpers/prototype_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/prototype_helper.rb b/actionpack/lib/action_view/helpers/prototype_helper.rb
index 4c3a8311a5..9cb2ed9bca 100644
--- a/actionpack/lib/action_view/helpers/prototype_helper.rb
+++ b/actionpack/lib/action_view/helpers/prototype_helper.rb
@@ -608,7 +608,7 @@ module ActionView
# Example:
#
# # Generates:
- # # new Element.insert("list", { bottom: <li>Some item</li>" });
+ # # new Element.insert("list", { bottom: "<li>Some item</li>" });
# # new Effect.Highlight("list");
# # ["status-indicator", "cancel-link"].each(Element.hide);
# update_page do |page|