aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-09-27 05:57:21 +0300
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-09-27 05:57:21 +0300
commit7c2104032b9d3ce86715e88f829d3a60a6ed6c70 (patch)
tree1c3b1522ad81821a0a9f2a5386810a7d90478698 /actionview
parent1d02cba939965272483a4bed8fe3d7dbabeafdaf (diff)
downloadrails-7c2104032b9d3ce86715e88f829d3a60a6ed6c70.tar.gz
rails-7c2104032b9d3ce86715e88f829d3a60a6ed6c70.tar.bz2
rails-7c2104032b9d3ce86715e88f829d3a60a6ed6c70.zip
minor doc fix [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/form_options_helper.rb6
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.