aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorSteve Klabnik + Katrina Owen <steve+katrina@steveklabnik.com>2012-11-09 09:31:22 +0100
committerSteve Klabnik + Katrina Owen <steve+katrina@steveklabnik.com>2012-11-09 09:31:22 +0100
commit3bc38426997c8df3ccfe5f785b6e36c81e535041 (patch)
tree11bae9be573fe5e9cea08484642162647ce14286 /actionpack/lib/action_view/helpers
parentdd0040d19f2b161201fd54e21fc807fb987f016d (diff)
downloadrails-3bc38426997c8df3ccfe5f785b6e36c81e535041.tar.gz
rails-3bc38426997c8df3ccfe5f785b6e36c81e535041.tar.bz2
rails-3bc38426997c8df3ccfe5f785b6e36c81e535041.zip
Fix message about include_blank option.
See https://github.com/rails/rails/commit/cb7d19b66badfbd1846c195913419c331701074e#commitcomment-2127148.
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-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