diff options
author | Semyon Perepelitsa <sema@sema.in> | 2011-09-12 20:53:10 +0400 |
---|---|---|
committer | Semyon Perepelitsa <sema@sema.in> | 2011-09-12 20:53:10 +0400 |
commit | 21b4244d410bf5832b09f9b0bb06a12f8c886072 (patch) | |
tree | f0ed6c662e2bc4eb102d545929583b4ad571d6be | |
parent | e47bb1cbe7bb33318f2ed2f1ca021ddd71f6c50f (diff) | |
download | rails-21b4244d410bf5832b09f9b0bb06a12f8c886072.tar.gz rails-21b4244d410bf5832b09f9b0bb06a12f8c886072.tar.bz2 rails-21b4244d410bf5832b09f9b0bb06a12f8c886072.zip |
Fix a typo in date
-rw-r--r-- | activesupport/lib/active_support/time_with_zone.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb index ec2c717942..63279d0e6d 100644 --- a/activesupport/lib/active_support/time_with_zone.rb +++ b/activesupport/lib/active_support/time_with_zone.rb @@ -12,7 +12,7 @@ module ActiveSupport # # Time.zone = 'Eastern Time (US & Canada)' # => 'Eastern Time (US & Canada)' # Time.zone.local(2007, 2, 10, 15, 30, 45) # => Sat, 10 Feb 2007 15:30:45 EST -05:00 - # Time.zone.parse('2007-02-01 15:30:45') # => Sat, 10 Feb 2007 15:30:45 EST -05:00 + # Time.zone.parse('2007-02-10 15:30:45') # => Sat, 10 Feb 2007 15:30:45 EST -05:00 # Time.zone.at(1170361845) # => Sat, 10 Feb 2007 15:30:45 EST -05:00 # Time.zone.now # => Sun, 18 May 2008 13:07:55 EDT -04:00 # Time.utc(2007, 2, 10, 20, 30, 45).in_time_zone # => Sat, 10 Feb 2007 15:30:45 EST -05:00 |