diff options
author | Ray Baxter <ray.baxter@gmail.com> | 2011-07-16 23:54:40 -0700 |
---|---|---|
committer | Ray Baxter <ray.baxter@gmail.com> | 2011-07-16 23:54:40 -0700 |
commit | 4341a5abaa1d143a9daa13986eabaf210143da4e (patch) | |
tree | 575dad22260b814457ca37dc1f2401bab6d15eca /actionpack/lib/action_view | |
parent | 6970c000e84334f043077efbfe750694aaf1669c (diff) | |
download | rails-4341a5abaa1d143a9daa13986eabaf210143da4e.tar.gz rails-4341a5abaa1d143a9daa13986eabaf210143da4e.tar.bz2 rails-4341a5abaa1d143a9daa13986eabaf210143da4e.zip |
document that second tags are also returned by default
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/date_helper.rb | 2 |
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 556145484a..1870493e8e 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -290,7 +290,7 @@ module ActionView InstanceTag.new(object_name, method, self, options.delete(:object)).to_datetime_select_tag(options, html_options) end - # Returns a set of html select-tags (one for year, month, day, hour, and minute) pre-selected with the + # Returns a set of html select-tags (one for year, month, day, hour, minute and second) pre-selected with the # +datetime+. It's also possible to explicitly set the order of the tags using the <tt>:order</tt> option with # an array of symbols <tt>:year</tt>, <tt>:month</tt> and <tt>:day</tt> in the desired order. If you do not # supply a Symbol, it will be appended onto the <tt>:order</tt> passed in. You can also add |