aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRay Baxter <ray.baxter@gmail.com>2011-07-17 00:31:09 -0700
committerRay Baxter <ray.baxter@gmail.com>2011-07-17 00:31:09 -0700
commit5c71a4e76897844ab6aeabb581549d981d9768c9 (patch)
tree4ca3bb6c95161bffb995069df95e078f7cce4620 /actionpack
parentf0a58dbd9baa1e9eb539d8ea99ddc1dca5e4f9fa (diff)
downloadrails-5c71a4e76897844ab6aeabb581549d981d9768c9.tar.gz
rails-5c71a4e76897844ab6aeabb581549d981d9768c9.tar.bz2
rails-5c71a4e76897844ab6aeabb581549d981d9768c9.zip
wording between select_second, select_minute and
select_hour should be consistent and correct
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/helpers/date_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb
index bc173f17d4..c2bdd47c83 100644
--- a/actionpack/lib/action_view/helpers/date_helper.rb
+++ b/actionpack/lib/action_view/helpers/date_helper.rb
@@ -448,7 +448,7 @@ module ActionView
# Returns a select tag with options for each of the minutes 0 through 59 with the current minute selected.
# Also can return a select tag with options by <tt>minute_step</tt> from 0 through 59 with the 00 minute
- # selected. The <tt>minute</tt> can also be substituted for a minute number.
+ # selected. The <tt>date</tt> can also be substituted for a minute number.
# Override the field name using the <tt>:field_name</tt> option, 'minute' by default.
#
# ==== Examples
@@ -473,7 +473,7 @@ module ActionView
end
# Returns a select tag with options for each of the hours 0 through 23 with the current hour selected.
- # The <tt>hour</tt> can also be substituted for a hour number.
+ # The <tt>date</tt> can also be substituted for a hour number.
# Override the field name using the <tt>:field_name</tt> option, 'hour' by default.
#
# ==== Examples