Fix default of String#to_time [ci skip]

The default of `String#to_time` is `:local` since b79adc4.
This commit is contained in:
yuuji.yaginuma 2017-10-08 18:34:43 +09:00
parent 142831159c
commit 2ee33e6c56

@ -1752,7 +1752,7 @@ The methods `to_date`, `to_time`, and `to_datetime` are basically convenience wr
"2010-07-27 23:42:00".to_time(:local) # => 2010-07-27 23:42:00 +0200
```
Default is `:utc`.
Default is `:local`.
Please refer to the documentation of `Date._parse` for further details.