diff options
author | yui-knk <spiketeika@gmail.com> | 2015-03-21 00:37:47 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-03-21 00:37:47 +0900 |
commit | e1440b264943e2d5fdd3e54f67c11591c9607810 (patch) | |
tree | 5bd0d04c181c73f7aba9338be39939b1ec32b0cd /actionview/lib | |
parent | a7ad06e34ca1726057a6947c817c21ea9a9e7cd8 (diff) | |
download | rails-e1440b264943e2d5fdd3e54f67c11591c9607810.tar.gz rails-e1440b264943e2d5fdd3e54f67c11591c9607810.tar.bz2 rails-e1440b264943e2d5fdd3e54f67c11591c9607810.zip |
[ci skip] Add a line between code example and docs
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/form_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb index b0793d0b91..5e727f6d69 100644 --- a/actionview/lib/action_view/helpers/form_helper.rb +++ b/actionview/lib/action_view/helpers/form_helper.rb @@ -140,6 +140,7 @@ module ActionView # will get expanded to # # <%= text_field :person, :first_name %> + # # which results in an HTML <tt><input></tt> tag whose +name+ attribute is # <tt>person[first_name]</tt>. This means that when the form is submitted, # the value entered by the user will be available in the controller as |