From 252afcd9f1731af234d3f5e7545d41752229c4c4 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 6 May 2014 08:18:13 +0000 Subject: * lib/time.rb (Time.parse): [DOC] Fix an example in the documentation. Reported by Marcus Stollsteimer. [ruby-core:60778] [Bug #9521] and [ruby-core:61718] [Bug #9682] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/time.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib/time.rb') diff --git a/lib/time.rb b/lib/time.rb index a10c20bedc..19c0477ac1 100644 --- a/lib/time.rb +++ b/lib/time.rb @@ -296,13 +296,13 @@ class Time # supplied with those of +now+. For the lower components, the minimum # values (1 or 0) are assumed if broken or missing. For example: # - # # Suppose it is "Thu Nov 29 14:33:20 GMT 2001" now and - # # your time zone is JST: - # now = Time.parse("Thu Nov 29 14:33:20 GMT 2001") - # Time.parse("16:30", now) #=> 2001-11-29 16:30:00 +0900 - # Time.parse("7/23", now) #=> 2001-07-23 00:00:00 +0900 - # Time.parse("Aug 31", now) #=> 2001-08-31 00:00:00 +0900 - # Time.parse("Aug 2000", now) #=> 2000-08-01 00:00:00 +0900 + # # Suppose it is "Thu Nov 29 14:33:20 2001" now and + # # your time zone is EST5EDT (Eastern Standard Time in US): + # now = Time.parse("Thu Nov 29 14:33:20 2001") + # Time.parse("16:30", now) #=> 2001-11-29 16:30:00 -0500 + # Time.parse("7/23", now) #=> 2001-07-23 00:00:00 -0400 + # Time.parse("Aug 31", now) #=> 2001-08-31 00:00:00 -0400 + # Time.parse("Aug 2000", now) #=> 2000-08-01 00:00:00 -0400 # # Since there are numerous conflicts among locally defined time zone # abbreviations all over the world, this method is not intended to -- cgit v1.2.3