aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorR.T. Lechow <rtlechow@gmail.com>2011-06-16 15:39:22 -0400
committerR.T. Lechow <rtlechow@gmail.com>2011-06-16 15:44:21 -0400
commit6ca18f9037b8ce86d9fd3e19be754cc3f97de0fd (patch)
tree177a602968a13ae65186a0a63c5d60b6a08535d3 /actionpack/lib
parent07d62ff7191f3334dffece1495a38b35f5669cbf (diff)
downloadrails-6ca18f9037b8ce86d9fd3e19be754cc3f97de0fd.tar.gz
rails-6ca18f9037b8ce86d9fd3e19be754cc3f97de0fd.tar.bz2
rails-6ca18f9037b8ce86d9fd3e19be754cc3f97de0fd.zip
Typo.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb
index 649acffa77..3debc9cc66 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -219,9 +219,9 @@ module ActionView
# <% end %>
#
# If you have an object that needs to be represented as a different
- # parameter, like a Client that acts as a Person:
+ # parameter, like a Person that acts as a Client:
#
- # <%= form_for(@post, :as => :client) do |f| %>
+ # <%= form_for(@person, :as => :client) do |f| %>
# ...
# <% end %>
#