diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-10-08 08:05:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-08 08:05:06 -0400 |
commit | e695086248290b186bd72134583a331d40645427 (patch) | |
tree | 0b162e3ef2a30daa15d1325b050e68473de2e1ea /actionview | |
parent | 992e719dbcaeb8b468f3b807af9d3ae090d70841 (diff) | |
parent | 11a89674aff171155043fa284035243982842d8d (diff) | |
download | rails-e695086248290b186bd72134583a331d40645427.tar.gz rails-e695086248290b186bd72134583a331d40645427.tar.bz2 rails-e695086248290b186bd72134583a331d40645427.zip |
Merge pull request #30831 from masatooba/fix-radio-button-tag-comment
Fix radio_button_tag comment
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/form_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_tag_helper.rb b/actionview/lib/action_view/helpers/form_tag_helper.rb index 31a1f8be8c..8a08e49e2f 100644 --- a/actionview/lib/action_view/helpers/form_tag_helper.rb +++ b/actionview/lib/action_view/helpers/form_tag_helper.rb @@ -394,7 +394,7 @@ module ActionView # # => <input checked="checked" id="receive_updates_no" name="receive_updates" type="radio" value="no" /> # # radio_button_tag 'time_slot', "3:00 p.m.", false, disabled: true - # # => <input disabled="disabled" id="time_slot_300_pm" name="time_slot" type="radio" value="3:00 p.m." /> + # # => <input disabled="disabled" id="time_slot_3:00_p.m." name="time_slot" type="radio" value="3:00 p.m." /> # # radio_button_tag 'color', "green", true, class: "color_input" # # => <input checked="checked" class="color_input" id="color_green" name="color" type="radio" value="green" /> |