aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorTim "Roger" Harvey <tim@theharveys.org>2013-02-12 13:57:20 -0800
committerTim "Roger" Harvey <tim@theharveys.org>2013-02-12 13:57:20 -0800
commit09d7eadbead132e77cce22ca9c0e76fa2a29c81a (patch)
tree81d970bf8a9e1dd9f5fa1963ec9e81455d711fc8 /actionpack
parent6530d42dbb42e87f8c8467169f143b882b2cf7f4 (diff)
downloadrails-09d7eadbead132e77cce22ca9c0e76fa2a29c81a.tar.gz
rails-09d7eadbead132e77cce22ca9c0e76fa2a29c81a.tar.bz2
rails-09d7eadbead132e77cce22ca9c0e76fa2a29c81a.zip
Correct bullet content line wrapping
The `:prefix` bullet content was not properly wrapping, dropping to the following line because the additional content was not indented properly. With this change, it will now display properly the way `:discard_type` does.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/helpers/date_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb
index 61f939bff1..a989966613 100644
--- a/actionpack/lib/action_view/helpers/date_helper.rb
+++ b/actionpack/lib/action_view/helpers/date_helper.rb
@@ -13,7 +13,7 @@ module ActionView
# elements. All of the select-type methods share a number of common options that are as follows:
#
# * <tt>:prefix</tt> - overwrites the default prefix of "date" used for the select names. So specifying "birthday"
- # would give \birthday[month] instead of \date[month] if passed to the <tt>select_month</tt> method.
+ # would give \birthday[month] instead of \date[month] if passed to the <tt>select_month</tt> method.
# * <tt>:include_blank</tt> - set to true if it should be possible to set an empty date.
# * <tt>:discard_type</tt> - set to true if you want to discard the type part of the select name. If set to true,
# the <tt>select_month</tt> method would use simply "date" (which can be overwritten using <tt>:prefix</tt>) instead