From abeabdbc881f3c992e50f053c94c36749a2e8226 Mon Sep 17 00:00:00 2001 From: Vipul A M Date: Sat, 23 Apr 2016 20:16:30 +0530 Subject: Follow up of https://github.com/rails/rails/commit/c9c5788a527b70d7f983e2b4b47e3afd863d9f48 [ci skip] --- activesupport/CHANGELOG.md | 2 +- .../lib/active_support/core_ext/date_and_time/compatibility.rb | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'activesupport') diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 45b6de55d1..2be567c2f7 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -30,7 +30,7 @@ * Add `ActiveSupport.to_time_preserves_timezone` config option to control how `to_time` handles timezones. In Ruby 2.4+ the behavior will change - from converting to the local system timezone to preserving the timezone + from converting to the local system timezone, to preserving the timezone of the receiver. This config option defaults to false so that apps made with earlier versions of Rails are not affected when upgrading, e.g: diff --git a/activesupport/lib/active_support/core_ext/date_and_time/compatibility.rb b/activesupport/lib/active_support/core_ext/date_and_time/compatibility.rb index b8eb587390..59aa3ccac2 100644 --- a/activesupport/lib/active_support/core_ext/date_and_time/compatibility.rb +++ b/activesupport/lib/active_support/core_ext/date_and_time/compatibility.rb @@ -1,12 +1,12 @@ module DateAndTime module Compatibility - # If true, +to_time+ preserves the the timezone offset. + # If true, +to_time+ preserves the timezone offset of receiver. # # NOTE: With Ruby 2.4+ the default for +to_time+ changed from - # converting to the local system time to preserving the offset + # converting to the local system time, to preserving the offset # of the receiver. For backwards compatibility we're overriding - # this behavior but new apps will have an initializer that sets - # this to true because the new behavior is preferred. + # this behavior, but new apps will have an initializer that sets + # this to true, because the new behavior is preferred. mattr_accessor(:preserve_timezone, instance_writer: false) { false } def to_time -- cgit v1.2.3