diff options
author | Arun Agrawal <arunagw@gmail.com> | 2013-12-25 05:00:24 -0800 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2013-12-25 05:00:24 -0800 |
commit | ed072bd5cb0f50ebe7de320de08e4221c65f61a1 (patch) | |
tree | f47649eed9568ef54cac459a2b3003763414a3c7 | |
parent | 84d47d073ed7e55a49c78c8cdda8209583e9a907 (diff) | |
parent | db7065b53ca58bff030931db128745f40a45630b (diff) | |
download | rails-ed072bd5cb0f50ebe7de320de08e4221c65f61a1.tar.gz rails-ed072bd5cb0f50ebe7de320de08e4221c65f61a1.tar.bz2 rails-ed072bd5cb0f50ebe7de320de08e4221c65f61a1.zip |
Merge pull request #13482 from aayushkhandelwal11/typo
Typo rectified commom => common[ci skip]
-rw-r--r-- | activerecord/lib/active_record/persistence.rb | 2 |
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 |