aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-12-25 05:00:24 -0800
committerArun Agrawal <arunagw@gmail.com>2013-12-25 05:00:24 -0800
commited072bd5cb0f50ebe7de320de08e4221c65f61a1 (patch)
treef47649eed9568ef54cac459a2b3003763414a3c7 /activerecord/lib
parent84d47d073ed7e55a49c78c8cdda8209583e9a907 (diff)
parentdb7065b53ca58bff030931db128745f40a45630b (diff)
downloadrails-ed072bd5cb0f50ebe7de320de08e4221c65f61a1.tar.gz
rails-ed072bd5cb0f50ebe7de320de08e4221c65f61a1.tar.bz2
rails-ed072bd5cb0f50ebe7de320de08e4221c65f61a1.zip
Merge pull request #13482 from aayushkhandelwal11/typo
Typo rectified commom => common[ci skip]
Diffstat (limited to 'activerecord/lib')
-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 35fbad466e..0cd5c09399 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -361,7 +361,7 @@ module ActiveRecord
# assert_equal 25, account.credit # check it is updated in memory
# assert_equal 25, account.reload.credit # check it is also persisted
#
- # Another commom use case is optimistic locking handling:
+ # Another common use case is optimistic locking handling:
#
# def with_optimistic_retry
# begin