mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
update rdoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
385223daa2
commit
8dc753f481
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ class Time
|
|||
# If a block is given, the year described in +date+ is converted by the
|
||||
# block. For example:
|
||||
#
|
||||
# Time.parse(...) {|y| y < 100 ? (y >= 69 ? y + 1900 : y + 2000) : y}
|
||||
# Time.parse(...) {|y| 0 <= y && y < 100 ? (y >= 69 ? y + 1900 : y + 2000) : y}
|
||||
#
|
||||
# If the upper components of the given time are broken or missing, they are
|
||||
# supplied with those of +now+. For the lower components, the minimum
|
||||
|
|
Loading…
Reference in a new issue