diff options
author | Jon Atack <jon@atack.com> | 2014-05-02 10:11:53 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2014-05-02 10:11:53 +0200 |
commit | ac67d1126fc1d225571f88288e16201b90ccd0ae (patch) | |
tree | 9a62fe9e1d1008b5163217f1fafa08ffca4f03de /actionview/lib/action_view | |
parent | 280e76e62d26a16d2e4a0ec46cec26c96d256ab5 (diff) | |
download | rails-ac67d1126fc1d225571f88288e16201b90ccd0ae.tar.gz rails-ac67d1126fc1d225571f88288e16201b90ccd0ae.tar.bz2 rails-ac67d1126fc1d225571f88288e16201b90ccd0ae.zip |
Form_tag_helper grammar fix [skip ci]
Diffstat (limited to 'actionview/lib/action_view')
-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 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 |