aboutsummaryrefslogtreecommitdiffstats
path: root/lib/time.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/time.rb')
-rw-r--r--lib/time.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/time.rb b/lib/time.rb
index 19c0477ac1..edb1452d52 100644
--- a/lib/time.rb
+++ b/lib/time.rb
@@ -297,12 +297,12 @@ class Time
# values (1 or 0) are assumed if broken or missing. For example:
#
# # Suppose it is "Thu Nov 29 14:33:20 2001" now and
- # # your time zone is EST5EDT (Eastern Standard Time in US):
+ # # your time zone is EST which is GMT-5.
# 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
+ # Time.parse("7/23", now) #=> 2001-07-23 00:00:00 -0500
+ # Time.parse("Aug 31", now) #=> 2001-08-31 00:00:00 -0500
+ # Time.parse("Aug 2000", now) #=> 2000-08-01 00:00:00 -0500
#
# Since there are numerous conflicts among locally defined time zone
# abbreviations all over the world, this method is not intended to