diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-29 08:11:25 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-29 08:11:25 +0000 |
commit | 5bb1f4e73ff3f4dd289bdd485500b89ad9e9ef0d (patch) | |
tree | ae93459ecc54650c3344ae943679062cde43585d | |
parent | b9ca9169ba7c71a507fb3d4bcd6373c9c23edc7f (diff) |
time.c: [DOC] fix method names to refer class methods [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65428 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | time.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5249,9 +5249,9 @@ rb_time_zone_abbreviation(VALUE zone, VALUE time) * tz = timezone("Europe/Athens") # Eastern European Time, UTC+2 * Time.new(2002, 10, 31, 2, 2, 2, tz) #=> 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 - * the current system setting. + * You can also use Time::gm, Time::local and Time::utc to infer GMT, + * local and UTC timezones instead of using the current system + * setting. * * You can also create a new time using Time::at which takes the number of * seconds (or fraction of seconds) since the {Unix |