diff options
author | Ray Baxter <ray.baxter@gmail.com> | 2011-07-16 23:09:59 -0700 |
---|---|---|
committer | Ray Baxter <ray.baxter@gmail.com> | 2011-07-16 23:09:59 -0700 |
commit | 851275e706977ddbfa05a9f23c60861904443f18 (patch) | |
tree | 50607282359d3792b038b9696a8b73253f39850a /actionpack/lib/action_view/helpers | |
parent | 5dd8277f5b7ab800609a8a3241ba398ac4efc370 (diff) | |
download | rails-851275e706977ddbfa05a9f23c60861904443f18.tar.gz rails-851275e706977ddbfa05a9f23c60861904443f18.tar.bz2 rails-851275e706977ddbfa05a9f23c60861904443f18.zip |
show correct helper in description
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-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 336bbc7f18..40286acbb2 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -440,7 +440,7 @@ module ActionView # # # Generates a select field for seconds with a custom prompt. Use <tt>:prompt => true</tt> for a # # generic prompt. - # select_minute(14, :prompt => 'Choose seconds') + # select_second(14, :prompt => 'Choose seconds') # def select_second(datetime, options = {}, html_options = {}) DateTimeSelector.new(datetime, options, html_options).select_second |