diff options
author | R.T. Lechow <rtlechow@gmail.com> | 2011-06-16 15:39:22 -0400 |
---|---|---|
committer | R.T. Lechow <rtlechow@gmail.com> | 2011-06-16 15:44:21 -0400 |
commit | 6ca18f9037b8ce86d9fd3e19be754cc3f97de0fd (patch) | |
tree | 177a602968a13ae65186a0a63c5d60b6a08535d3 /actionpack/lib | |
parent | 07d62ff7191f3334dffece1495a38b35f5669cbf (diff) | |
download | rails-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.rb | 4 |
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 %> # |