aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRay Baxter <ray.baxter@gmail.com>2011-07-16 23:29:51 -0700
committerRay Baxter <ray.baxter@gmail.com>2011-07-16 23:29:51 -0700
commit762a2f4653a5f7408f4cb6056cd974edd12d8b61 (patch)
tree350ab407901da2852ffa5282964341441a4e9220 /actionpack
parent589ff9680958faec98ec3d0ff710c6f635d6b5c1 (diff)
downloadrails-762a2f4653a5f7408f4cb6056cd974edd12d8b61.tar.gz
rails-762a2f4653a5f7408f4cb6056cd974edd12d8b61.tar.bz2
rails-762a2f4653a5f7408f4cb6056cd974edd12d8b61.zip
clarify that classes that include DateHelper can
also manipulate times
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 6ea0a9980b..691817cf79 100644
--- a/actionpack/lib/action_view/helpers/date_helper.rb
+++ b/actionpack/lib/action_view/helpers/date_helper.rb
@@ -8,8 +8,8 @@ module ActionView
module Helpers
# = Action View Date Helpers
#
- # The Date Helper primarily creates select/option tags for different kinds of dates and date elements. All of the
- # select-type methods share a number of common options that are as follows:
+ # The Date Helper primarily creates select/option tags for different kinds of dates and times or date and time
+ # 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.