aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/locking
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-10-23 12:21:35 -0400
committerJon Moss <me@jonathanmoss.me>2016-10-23 12:21:35 -0400
commit65b1c991b18852e879df8b3c092cc286c5c087f9 (patch)
tree99ae7250931790db1bb97a620f3d6cbd4dddb8be /activerecord/lib/active_record/locking
parenta3ce625c76355ebd095d55bb5c3864db73247826 (diff)
downloadrails-65b1c991b18852e879df8b3c092cc286c5c087f9.tar.gz
rails-65b1c991b18852e879df8b3c092cc286c5c087f9.tar.bz2
rails-65b1c991b18852e879df8b3c092cc286c5c087f9.zip
Small grammar fix for #26867
[ci skip]
Diffstat (limited to 'activerecord/lib/active_record/locking')
-rw-r--r--activerecord/lib/active_record/locking/optimistic.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/locking/optimistic.rb b/activerecord/lib/active_record/locking/optimistic.rb
index 98215b1c9b..82882469e3 100644
--- a/activerecord/lib/active_record/locking/optimistic.rb
+++ b/activerecord/lib/active_record/locking/optimistic.rb
@@ -47,7 +47,8 @@ module ActiveRecord
# self.locking_column = :lock_person
# end
#
- # Note that, optimistic locking will be ignored if you update the locking column value.
+ # Please note that the optimistic locking will be ignored if you update the
+ # locking column's value.
module Optimistic
extend ActiveSupport::Concern