diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2017-08-09 17:28:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-09 17:28:40 +0200 |
commit | e5fb6ed62b1789ac71fef6a94c57c65097bd45aa (patch) | |
tree | d9a37081e0323d5eaa33714658ed89ce6540c119 /actionview/lib/action_view/helpers/form_helper.rb | |
parent | da589fcc4a15cdc923b9df55f9fe964df996e49b (diff) | |
parent | 114fdc451b77ff9d5e269c796a718479eb6b4ca0 (diff) | |
download | rails-e5fb6ed62b1789ac71fef6a94c57c65097bd45aa.tar.gz rails-e5fb6ed62b1789ac71fef6a94c57c65097bd45aa.tar.bz2 rails-e5fb6ed62b1789ac71fef6a94c57c65097bd45aa.zip |
Merge pull request #30161 from tjschuck/rdoc_code_format_fix
Fix broken RDoc formatting
Diffstat (limited to 'actionview/lib/action_view/helpers/form_helper.rb')
-rw-r--r-- | actionview/lib/action_view/helpers/form_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb index 8b6322f8ad..082ea85aba 100644 --- a/actionview/lib/action_view/helpers/form_helper.rb +++ b/actionview/lib/action_view/helpers/form_helper.rb @@ -1569,7 +1569,7 @@ module ActionView # In the above block, a +FormBuilder+ object is yielded as the # +person_form+ variable. This allows you to generate the +text_field+ # and +check_box+ fields by specifying their eponymous methods, which - # modify the underlying template and associates the +@person+ model object + # modify the underlying template and associates the <tt>@person</tt> model object # with the form. # # The +FormBuilder+ object can be thought of as serving as a proxy for the |