aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-11-14 21:25:37 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2010-11-14 21:25:37 -0200
commitf597d1ec8097d98198a58cb932c2c202c5f0a931 (patch)
tree6fc5ae9eaa2fa35a530455cd4128a12f88168712 /actionpack/lib/action_view/helpers/form_helper.rb
parentc996901913d74640afb1856044e5a5d6bd12a7fd (diff)
downloadrails-f597d1ec8097d98198a58cb932c2c202c5f0a931.tar.gz
rails-f597d1ec8097d98198a58cb932c2c202c5f0a931.tar.bz2
rails-f597d1ec8097d98198a58cb932c2c202c5f0a931.zip
This doesn't make sense here
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_helper.rb')
-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 0470b051c6..9dd763050c 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -269,8 +269,8 @@ module ActionView
# <%= form_for @person, :url => { :action => "create" }, :builder => LabellingFormBuilder do |f| %>
# <%= f.text_field :first_name %>
# <%= f.text_field :last_name %>
- # <%= text_area :person, :biography %>
- # <%= check_box_tag "person[admin]", @person.company.admin? %>
+ # <%= f.text_area :biography %>
+ # <%= f.check_box :admin %>
# <% end %>
#
# In this case, if you use this: