aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorSteven Yang <yangchenyun@gmail.com>2013-06-14 14:39:03 +0800
committerSteven Yang <yangchenyun@gmail.com>2013-06-15 00:34:10 +0800
commit8867e16a6041e2139696bcb9cfab4642ce55fbdd (patch)
tree1c8cdc635c64ed322ac654925c234f5ba0deaf04 /activerecord/lib/active_record
parent90a6059dd2df748e002618eaacab6b46f50d4bfc (diff)
downloadrails-8867e16a6041e2139696bcb9cfab4642ce55fbdd.tar.gz
rails-8867e16a6041e2139696bcb9cfab4642ce55fbdd.tar.bz2
rails-8867e16a6041e2139696bcb9cfab4642ce55fbdd.zip
correct documentation about active_record behavior
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/timestamp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/timestamp.rb b/activerecord/lib/active_record/timestamp.rb
index ae99cff35e..9253150c4f 100644
--- a/activerecord/lib/active_record/timestamp.rb
+++ b/activerecord/lib/active_record/timestamp.rb
@@ -10,9 +10,9 @@ module ActiveRecord
#
# config.active_record.record_timestamps = false
#
- # Timestamps are in the local timezone by default but you can use UTC by setting:
+ # Timestamps are in UTC by default but you can use the local timezone by setting:
#
- # config.active_record.default_timezone = :utc
+ # config.active_record.default_timezone = :local
#
# == Time Zone aware attributes
#