aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Mathieu <42@dmathieu.com>2014-05-02 10:21:39 +0200
committerDamien Mathieu <42@dmathieu.com>2014-05-02 10:21:39 +0200
commit0591f1823b45005f4822f513d0103cfff0463fee (patch)
tree9a62fe9e1d1008b5163217f1fafa08ffca4f03de
parent280e76e62d26a16d2e4a0ec46cec26c96d256ab5 (diff)
parentac67d1126fc1d225571f88288e16201b90ccd0ae (diff)
downloadrails-0591f1823b45005f4822f513d0103cfff0463fee.tar.gz
rails-0591f1823b45005f4822f513d0103cfff0463fee.tar.bz2
rails-0591f1823b45005f4822f513d0103cfff0463fee.zip
Merge pull request #14939 from jonatack/patch-8
Form_tag_helper grammar fix [skip ci]
-rw-r--r--actionview/lib/action_view/helpers/form_tag_helper.rb2
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 1f931a300d..10dcb5c28c 100644
--- a/actionview/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionview/lib/action_view/helpers/form_tag_helper.rb
@@ -84,7 +84,7 @@ module ActionView
# * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
# * <tt>:include_blank</tt> - If set to true, an empty option will be created.
# * <tt>:prompt</tt> - Create a prompt option with blank value and the text asking user to select something.
- # * <tt>:selected</tt> - Provide a default selected value. The value provided should be the exact type the options are provided.
+ # * <tt>:selected</tt> - Provide a default selected value. It should be of the exact type as the provided options.
# * Any other key creates standard HTML attributes for the tag.
#
# ==== Examples