diff options
author | Daniel Dawson <dpdawson@dpdawson.org> | 2013-07-11 16:20:42 +0100 |
---|---|---|
committer | Daniel Dawson <dpdawson@dpdawson.org> | 2013-07-12 09:43:05 +0100 |
commit | 9cf1f9e6f5a772862a89e0f7227868f8b83e4a3a (patch) | |
tree | 1fee6d3ba5f1b5040d9a700107ac76f3aab103c3 /guides/source | |
parent | 424d840efb7dad40284c158715a479235269c7ae (diff) | |
download | rails-9cf1f9e6f5a772862a89e0f7227868f8b83e4a3a.tar.gz rails-9cf1f9e6f5a772862a89e0f7227868f8b83e4a3a.tar.bz2 rails-9cf1f9e6f5a772862a89e0f7227868f8b83e4a3a.zip |
Improve Active View Overview guide. [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_view_overview.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index 75f2989f5b..3542844f33 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -775,8 +775,8 @@ select_day(5) Returns a select tag with options for each of the hours 0 through 23 with the current hour selected. ```ruby -# Generates a select field for minutes that defaults to the minutes for the time provided -select_minute(Time.now + 6.hours) +# Generates a select field for hours that defaults to the hours for the time provided +select_hour(Time.now + 6.hours) ``` #### select_minute |