diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-28 19:51:07 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-28 19:51:54 +0900 |
commit | 946cd6c5348d7dd12ecc41e79c3ca9803d2ca7f0 (patch) | |
tree | 2ddf4483af71549f042973a94d656bfc23d246ed /time.c | |
parent | f44114b502f4ae793f95d0be14b094cfe7c4c0e7 (diff) |
Use https instead of http
Diffstat (limited to 'time.c')
-rw-r--r-- | time.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4456,7 +4456,7 @@ time_ceil(int argc, VALUE *argv, VALUE time) * Returns the second of the minute (0..60) for _time_. * * *Note:* Seconds range from zero to 60 to allow the system to inject - * leap seconds. See http://en.wikipedia.org/wiki/Leap_second for further + * leap seconds. See https://en.wikipedia.org/wiki/Leap_second for further * details. * * t = Time.now #=> 2007-11-19 08:25:02 -0600 @@ -5776,7 +5776,7 @@ rb_time_zone_abbreviation(VALUE zone, VALUE time) * * You can also create a new time using Time.at which takes the number of * seconds (with subsecond) since the {Unix - * Epoch}[http://en.wikipedia.org/wiki/Unix_time]. + * Epoch}[https://en.wikipedia.org/wiki/Unix_time]. * * Time.at(628232400) #=> 1989-11-28 00:00:00 -0500 * |