mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #30831 from masatooba/fix-radio-button-tag-comment
Fix radio_button_tag comment
This commit is contained in:
commit
e695086248
1 changed files with 1 additions and 1 deletions
|
@ -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" />
|
||||
|
|
Loading…
Reference in a new issue