diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-06 13:39:15 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-06 13:39:15 +0000 |
commit | 0ea2ae132fead75aea96a8ae117457aba00e8a96 (patch) | |
tree | a766173f9bf1f15ca67fe1ccfd60cd7e1f9cad59 /time.c | |
parent | 4bf737cf9dcfebeb5a40deef86860447476788f4 (diff) | |
download | ruby-0ea2ae132fead75aea96a8ae117457aba00e8a96.tar.gz |
* time.c: [DOC] Typo in Time overview by @sparr [Fixes GH-374]
https://github.com/ruby/ruby/pull/374
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r-- | time.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4839,7 +4839,7 @@ time_load(VALUE klass, VALUE str) * Time.new(2002) #=> 2002-01-01 00:00:00 -0500 * Time.new(2002, 10) #=> 2002-10-01 00:00:00 -0500 * Time.new(2002, 10, 31) #=> 2002-10-31 00:00:00 -0500 - * Time.new(2002, 10, 31, 2, 2, 2, "+02:00") #=> 2002-10-31 02:02:02 -0200 + * Time.new(2002, 10, 31, 2, 2, 2, "+02:00") #=> 2002-10-31 02:02:02 +0200 * * You can also use #gm, #local and * #utc to infer GMT, local and UTC timezones instead of using |