diff options
author | Jeroen van Dijk <jeroen@jeevidee.nl> | 2010-03-12 13:23:24 +0100 |
---|---|---|
committer | Jeroen van Dijk <jeroen@jeevidee.nl> | 2010-03-12 16:50:14 +0100 |
commit | 363616572dcc2a9bb10b226b0a730667b29b4c1d (patch) | |
tree | 19b897794169643b3c206b67d232c3b46ec97bd9 /actionpack/lib/action_view/helpers | |
parent | e8d2f48cff858728280eef575e95c3b82ecd69d9 (diff) | |
download | rails-363616572dcc2a9bb10b226b0a730667b29b4c1d.tar.gz rails-363616572dcc2a9bb10b226b0a730667b29b4c1d.tar.bz2 rails-363616572dcc2a9bb10b226b0a730667b29b4c1d.zip |
Updated documentation for block helpers in prototype_helper.rb
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r-- | actionpack/lib/action_view/helpers/prototype_helper.rb | 2 |
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 7eb6bceca0..51510449bd 100644 --- a/actionpack/lib/action_view/helpers/prototype_helper.rb +++ b/actionpack/lib/action_view/helpers/prototype_helper.rb @@ -35,7 +35,7 @@ module ActionView # # ...through a form... # - # <% form_remote_tag :url => '/shipping' do -%> + # <%= form_remote_tag :url => '/shipping' do -%> # <div><%= submit_tag 'Recalculate Shipping' %></div> # <% end -%> # |