aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-06-09 00:12:06 +0900
committeryui-knk <spiketeika@gmail.com>2015-06-09 00:12:06 +0900
commitcbd71795bc4ac5b81c95dfc68d4b76e612433279 (patch)
tree238390544df68375751c8dfde644de023134392f /guides/source
parentedea7b6f0aaec4ee5fbbfed1c77a7417afedd615 (diff)
downloadrails-cbd71795bc4ac5b81c95dfc68d4b76e612433279.tar.gz
rails-cbd71795bc4ac5b81c95dfc68d4b76e612433279.tar.bz2
rails-cbd71795bc4ac5b81c95dfc68d4b76e612433279.zip
[ci skip] Fix minutes to seconds in `select_second`
This is same type commit of https://github.com/rails/rails/pull/20463
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/action_view_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md
index 6ebeb23409..e16ce57d01 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -724,7 +724,7 @@ Returns a select tag with options for each of the seconds 0 through 59 with the
```ruby
# Generates a select field for seconds that defaults to the seconds for the time provided
-select_second(Time.now + 16.minutes)
+select_second(Time.now + 16.seconds)
```
#### select_time