diff options
author | Ronak Jangir <ronakjangir47@gmail.com> | 2015-08-26 10:18:20 +0530 |
---|---|---|
committer | Ronak Jangir <ronakjangir47@gmail.com> | 2015-08-26 10:20:50 +0530 |
commit | 1be7fcad6b9aec42380f719ce1e47888a70d9152 (patch) | |
tree | 125fc407a78ad92b23d9cffd100e1b6eb196cb55 /activesupport | |
parent | 51c7ac142d31095d4c699f44cc44ddea627da1eb (diff) | |
download | rails-1be7fcad6b9aec42380f719ce1e47888a70d9152.tar.gz rails-1be7fcad6b9aec42380f719ce1e47888a70d9152.tar.bz2 rails-1be7fcad6b9aec42380f719ce1e47888a70d9152.zip |
Fixed to_datetime docs [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/time_with_zone.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb index 5dd9c423e3..817522677f 100644 --- a/activesupport/lib/active_support/time_with_zone.rb +++ b/activesupport/lib/active_support/time_with_zone.rb @@ -369,9 +369,10 @@ module ActiveSupport utc.to_time end - # Returns an instance of DateTime in the UTC timezone. + # Returns an instance of DateTime with the timezone's UTC offset # - # Time.zone.now.to_datetime # => Tue, 18 Aug 2015 02:32:20 +0000 + # Time.zone.now.to_datetime # => Tue, 18 Aug 2015 02:32:20 +0000 + # Time.current.in_time_zone('Hawaii').to_datetime # => Mon, 17 Aug 2015 16:32:20 -1000 def to_datetime utc.to_datetime.new_offset(Rational(utc_offset, 86_400)) end |