aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-11-09 03:11:23 -0800
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-11-09 03:11:23 -0800
commit636ae13a720926b12ff3dbd29959a5baf1af271a (patch)
tree2c10c4847de87d94466d39fbfd0bf11c3aa0fc93 /actionpack/lib
parent0130c17476b754aea20faf6914686c5d4c7086b9 (diff)
parent3bc38426997c8df3ccfe5f785b6e36c81e535041 (diff)
downloadrails-636ae13a720926b12ff3dbd29959a5baf1af271a.tar.gz
rails-636ae13a720926b12ff3dbd29959a5baf1af271a.tar.bz2
rails-636ae13a720926b12ff3dbd29959a5baf1af271a.zip
Merge pull request #8153 from steveklabnik/fix_include_blank
Fix message about include_blank option. [ci skip]
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/form_options_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_options_helper.rb b/actionpack/lib/action_view/helpers/form_options_helper.rb
index b7b3db959e..46ebe60ec2 100644
--- a/actionpack/lib/action_view/helpers/form_options_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_options_helper.rb
@@ -152,7 +152,7 @@ module ActionView
# form, and parameters extraction gets the last occurrence of any repeated
# key in the query string, that works for ordinary forms.
#
- # In case if you don't want the helper to generate this hidden field you can specify <tt>include_blank: false</tt> option.
+ # In case if you don't want the helper to generate this hidden field you can specify <tt>include_hidden: false</tt> option.
#
def select(object, method, choices, options = {}, html_options = {})
Tags::Select.new(object, method, self, choices, options, html_options).render