aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/locking/optimistic.rb
diff options
context:
space:
mode:
authorPaco Guzman <fjguzman@aspgems.com>2011-03-11 23:08:55 +0100
committerPaco Guzman <fjguzman@aspgems.com>2011-03-11 23:08:55 +0100
commit0a51e43866e54c5445a8efce253d60df23e3a7d6 (patch)
tree41446e7e1c4a918c5d10a8ddd619f5ca2e5e5cfa /activerecord/lib/active_record/locking/optimistic.rb
parentee7c48678f443ed7fb77fe97042f7a698e359df9 (diff)
downloadrails-0a51e43866e54c5445a8efce253d60df23e3a7d6.tar.gz
rails-0a51e43866e54c5445a8efce253d60df23e3a7d6.tar.bz2
rails-0a51e43866e54c5445a8efce253d60df23e3a7d6.zip
remove some blanks
Diffstat (limited to 'activerecord/lib/active_record/locking/optimistic.rb')
-rw-r--r--activerecord/lib/active_record/locking/optimistic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/locking/optimistic.rb b/activerecord/lib/active_record/locking/optimistic.rb
index 6b2b1ebafe..9a31675782 100644
--- a/activerecord/lib/active_record/locking/optimistic.rb
+++ b/activerecord/lib/active_record/locking/optimistic.rb
@@ -23,7 +23,7 @@ module ActiveRecord
# p2.first_name = "should fail"
# p2.save # Raises a ActiveRecord::StaleObjectError
#
- # Optimistic locking will also check for stale data when objects are destroyed. Example:
+ # Optimistic locking will also check for stale data when objects are destroyed. Example:
#
# p1 = Person.find(1)
# p2 = Person.find(1)