aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-06-08 09:58:12 -0400
committerZachary Scott <e@zzak.io>2015-06-08 09:58:12 -0400
commitaeac00feb41ec99ef39b79cae31546ca875188d9 (patch)
tree8a50ffe2ebb1801169e2c5b5064e573b5d9cfdbc /actionview
parented0677deafc8cbfe9850e91e8937d43e30ea26d3 (diff)
parent4071caad2a8e352cd67dd43ae80d1d9bd1bd5ac3 (diff)
downloadrails-aeac00feb41ec99ef39b79cae31546ca875188d9.tar.gz
rails-aeac00feb41ec99ef39b79cae31546ca875188d9.tar.bz2
rails-aeac00feb41ec99ef39b79cae31546ca875188d9.zip
Merge pull request #20463 from yui-knk/fix/guide1
[ci skip] Fix hours to minutes in `select_minute`
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/date_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/date_helper.rb b/actionview/lib/action_view/helpers/date_helper.rb
index 46ce7cf0be..394e20ff2b 100644
--- a/actionview/lib/action_view/helpers/date_helper.rb
+++ b/actionview/lib/action_view/helpers/date_helper.rb
@@ -488,7 +488,7 @@ module ActionView
# selected. The <tt>datetime</tt> can be either a +Time+ or +DateTime+ object or an integer.
# Override the field name using the <tt>:field_name</tt> option, 'minute' by default.
#
- # my_time = Time.now + 6.hours
+ # my_time = Time.now + 10.minutes
#
# # Generates a select field for minutes that defaults to the minutes for the time in my_time.
# select_minute(my_time)