aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/persistence.rb
diff options
context:
space:
mode:
authorAayush khandelwal <aayush.khandelwal@vinsol.com>2013-12-25 18:22:26 +0530
committerAayush khandelwal <aayush.khandelwal@vinsol.com>2013-12-25 18:22:26 +0530
commitdb7065b53ca58bff030931db128745f40a45630b (patch)
tree3a346f20619f49a9c9027bc6c77863c6ea880118 /activerecord/lib/active_record/persistence.rb
parent11c0ef58a6cd278fc6b5d81a7724d9bcdb47f623 (diff)
downloadrails-db7065b53ca58bff030931db128745f40a45630b.tar.gz
rails-db7065b53ca58bff030931db128745f40a45630b.tar.bz2
rails-db7065b53ca58bff030931db128745f40a45630b.zip
Typo rectified commom => common[ci skip]
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 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