aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/persistence.rb
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2014-02-27 17:10:47 +0100
committerRobin Dupret <robin.dupret@gmail.com>2014-02-27 17:15:48 +0100
commit00824b09340e60c76d16550631ddccaecff03599 (patch)
tree74c77da052ad5478f9dffa1f90b5a17c9adc65fa /activerecord/lib/active_record/persistence.rb
parentf33a65289c25b18a9c2aecf8d280975d145ad563 (diff)
downloadrails-00824b09340e60c76d16550631ddccaecff03599.tar.gz
rails-00824b09340e60c76d16550631ddccaecff03599.tar.bz2
rails-00824b09340e60c76d16550631ddccaecff03599.zip
Replace "data store" with database [ci skip]
Active Record is specifically for databases. Refs #12101.
Diffstat (limited to 'activerecord/lib/active_record/persistence.rb')
-rw-r--r--activerecord/lib/active_record/persistence.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index b1b35ed940..203928fb3f 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -64,7 +64,7 @@ module ActiveRecord
end
# Returns true if this object hasn't been saved yet -- that is, a record
- # for the object doesn't exist in the data store yet; otherwise, returns false.
+ # for the object doesn't exist in the database yet; otherwise, returns false.
def new_record?
sync_with_transaction_state
@new_record