diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-09-27 10:03:57 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-09-27 10:03:57 -0600 |
commit | f8db6ba440c2a6ebd6c66f6390ba60c74839dabb (patch) | |
tree | af27cb2d0d746daf79eb96950845e33d9d9b1c0b /actionview/lib | |
parent | 0ce3b97fa30f7db8ba3911ab30dc5df246184f4f (diff) | |
parent | 7c2104032b9d3ce86715e88f829d3a60a6ed6c70 (diff) | |
download | rails-f8db6ba440c2a6ebd6c66f6390ba60c74839dabb.tar.gz rails-f8db6ba440c2a6ebd6c66f6390ba60c74839dabb.tar.bz2 rails-f8db6ba440c2a6ebd6c66f6390ba60c74839dabb.zip |
Merge pull request #21785 from vngrs/minor_doc_fix
minor doc fix [ci skip]
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/form_options_helper.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionview/lib/action_view/helpers/form_options_helper.rb b/actionview/lib/action_view/helpers/form_options_helper.rb index f6dd179bb7..430051379d 100644 --- a/actionview/lib/action_view/helpers/form_options_helper.rb +++ b/actionview/lib/action_view/helpers/form_options_helper.rb @@ -548,7 +548,7 @@ module ActionView end # Returns a string of option tags for pretty much any time zone in the - # world. Supply a ActiveSupport::TimeZone name as +selected+ to have it + # world. Supply an ActiveSupport::TimeZone name as +selected+ to have it # marked as the selected option tag. You can also supply an array of # ActiveSupport::TimeZone objects as +priority_zones+, so that they will # be listed above the rest of the (long) list. (You can use @@ -556,7 +556,7 @@ module ActionView # of the US time zones, or a Regexp to select the zones of your choice) # # The +selected+ parameter must be either +nil+, or a string that names - # a ActiveSupport::TimeZone. + # an ActiveSupport::TimeZone. # # By default, +model+ is the ActiveSupport::TimeZone constant (which can # be obtained in Active Record as a value object). The only requirement @@ -655,7 +655,7 @@ module ActionView # # params.require(:user).permit(...) # - # will raise a error since no +{user: ...}+ will be present. + # will raise an error since no +{user: ...}+ will be present. # # To prevent this the helper generates an auxiliary hidden field before # every collection of radio buttons. The hidden field has the same name as collection radio button and blank value. |