diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb
index 51b77a9521..332743d55b 100644
--- a/actionpack/lib/action_view/helpers/date_helper.rb
+++ b/actionpack/lib/action_view/helpers/date_helper.rb
@@ -112,12 +112,12 @@ module ActionView
# ==== Options
# * :use_month_numbers - Set to true if you want to use month numbers rather than month names (e.g.
# "2" instead of "February").
- # * :use_short_month - Set to true if you want to use the abbreviated month name instead of the full
- # name (e.g. "Feb" instead of "February").
- # * :add_month_numbers - Set to true if you want to show both, the month's number and name (e.g.
+ # * :use_short_month - Set to true if you want to use abbreviated month names instead of full
+ # month names (e.g. "Feb" instead of "February").
+ # * :add_month_numbers - Set to true if you want to use both month numbers and month names (e.g.
# "2 - February" instead of "February").
# * :use_month_names - Set to an array with 12 month names if you want to customize month names.
- # Note: You can also use Rails' new i18n functionality for this.
+ # Note: You can also use Rails' i18n functionality for this.
# * :date_separator - Specifies a string to separate the date fields. Default is "" (i.e. nothing).
# * :start_year - Set the start year for the year select. Default is Time.now.year - 5.
# * :end_year - Set the end year for the year select. Default is Time.now.year + 5.
@@ -128,7 +128,7 @@ module ActionView
# as a hidden field instead of showing a select field. Also note that this implicitly sets :discard_day to true.
# * :discard_year - Set to true if you don't want to show a year select. This includes the year
# as a hidden field instead of showing a select field.
- # * :order - Set to an array containing :day, :month and :year do
+ # * :order - Set to an array containing :day, :month and :year to
# customize the order in which the select fields are shown. If you leave out any of the symbols, the respective
# select will not be shown (like when you set :discard_xxx => true. Defaults to the order defined in
# the respective locale (e.g. [:year, :month, :day] in the en locale that ships with Rails).