From 1be7fcad6b9aec42380f719ce1e47888a70d9152 Mon Sep 17 00:00:00 2001 From: Ronak Jangir Date: Wed, 26 Aug 2015 10:18:20 +0530 Subject: Fixed to_datetime docs [ci skip] --- activesupport/lib/active_support/time_with_zone.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'activesupport') 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 -- cgit v1.2.3