diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-12-30 16:58:47 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-12-30 16:58:47 +0900 |
commit | 11c06d3cbf17bb6133108df4207440a545bdc052 (patch) | |
tree | ecfe463ec65c28fa7f121c475b97779eeab9b872 | |
parent | 35e9638daffd0f844ee072418fcd73472aa283ec (diff) | |
download | rails-11c06d3cbf17bb6133108df4207440a545bdc052.tar.gz rails-11c06d3cbf17bb6133108df4207440a545bdc052.tar.bz2 rails-11c06d3cbf17bb6133108df4207440a545bdc052.zip |
Remove needless blank lines [ci skip]
This broke the doc.
-rw-r--r-- | actionview/lib/action_view/helpers/form_options_helper.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/form_options_helper.rb b/actionview/lib/action_view/helpers/form_options_helper.rb index a46741f661..fe5e0b693e 100644 --- a/actionview/lib/action_view/helpers/form_options_helper.rb +++ b/actionview/lib/action_view/helpers/form_options_helper.rb @@ -217,12 +217,10 @@ module ActionView # array of child objects representing the <tt><option></tt> tags. It can also be any object that responds # to +call+, such as a +proc+, that will be called for each member of the +collection+ to retrieve the # value. - # * +group_label_method+ - The name of a method which, when called on a member of +collection+, returns a # string to be used as the +label+ attribute for its <tt><optgroup></tt> tag. It can also be any object # that responds to +call+, such as a +proc+, that will be called for each member of the +collection+ to # retrieve the label. - # * +option_key_method+ - The name of a method which, when called on a child object of a member of # +collection+, returns a value to be used as the +value+ attribute for its <tt><option></tt> tag. # * +option_value_method+ - The name of a method which, when called on a child object of a member of |