diff options
author | Felix Schäfer <felix@fachschaften.org> | 2015-01-18 23:44:07 +0100 |
---|---|---|
committer | Felix Schäfer <felix@thegcat.net> | 2015-01-27 21:18:15 +0100 |
commit | 31dd1ca59f13f37c46027e5006324d2060395765 (patch) | |
tree | 5f5b0d0d41521053d1fe8610d1a5a16a13ffe4c0 | |
parent | 9caeded9c62bf2c462a60a1a0b1a58249d4bd6ac (diff) | |
download | rails-31dd1ca59f13f37c46027e5006324d2060395765.tar.gz rails-31dd1ca59f13f37c46027e5006324d2060395765.tar.bz2 rails-31dd1ca59f13f37c46027e5006324d2060395765.zip |
fix typo still cause -> still causes
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb index 98671178cb..75cc88d4ee 100644 --- a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb +++ b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb @@ -73,7 +73,7 @@ module ActiveRecord time_zone_aware_types.include?(:not_explicitly_configured) ActiveSupport::Deprecation.warn(<<-MESSAGE) Time columns will become time zone aware in Rails 5.1. This - still cause `String`s to be parsed as if they were in `Time.zone`, + still causes `String`s to be parsed as if they were in `Time.zone`, and `Time`s to be converted to `Time.zone`. To keep the old behavior, you must add the following to your initializer: |