From 8dc753f481d234ac7707d36ce89af906a9040a73 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 23 Apr 2009 17:47:58 +0000 Subject: [PATCH] update rdoc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/time.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/time.rb b/lib/time.rb index 5b70deca5f..2e6ed324e3 100644 --- a/lib/time.rb +++ b/lib/time.rb @@ -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