diff options
author | Ray Baxter <ray.baxter@gmail.com> | 2011-07-16 23:11:48 -0700 |
---|---|---|
committer | Ray Baxter <ray.baxter@gmail.com> | 2011-07-16 23:11:48 -0700 |
commit | 4ada0a58ae324c029132c7280eec1dd996a79882 (patch) | |
tree | a18484e219f7d0f0a45d249b8944cf1b8b5a3cc6 /actionpack | |
parent | 851275e706977ddbfa05a9f23c60861904443f18 (diff) | |
download | rails-4ada0a58ae324c029132c7280eec1dd996a79882.tar.gz rails-4ada0a58ae324c029132c7280eec1dd996a79882.tar.bz2 rails-4ada0a58ae324c029132c7280eec1dd996a79882.zip |
use minute instead of second in description of select_minute
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/date_helper.rb | 4 |
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 40286acbb2..4776204d2f 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -461,8 +461,8 @@ module ActionView # select_minute(14) # # # Generates a select field for minutes that defaults to the minutes for the time in my_time - # # that is named 'stride' rather than 'second'. - # select_minute(my_time, :field_name => 'stride') + # # that is named 'moment' rather than 'minute'. + # select_minute(my_time, :field_name => 'moment') # # # Generates a select field for minutes with a custom prompt. Use <tt>:prompt => true</tt> for a # # generic prompt. |