aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_record_querying.textile
diff options
context:
space:
mode:
authorSebastian Martinez <sebastian@wyeworks.com>2011-04-14 20:37:12 -0300
committerSebastian Martinez <sebastian@wyeworks.com>2011-04-14 20:37:12 -0300
commitbbfc6cda82b9550bfc955ecf66c0b803e3002e0a (patch)
treef4a39c890e0a741bcd202a6d306ca4da35301ca9 /railties/guides/source/active_record_querying.textile
parent5be72684f6bbaf83359864b3f46c156de1d9e3ba (diff)
downloadrails-bbfc6cda82b9550bfc955ecf66c0b803e3002e0a.tar.gz
rails-bbfc6cda82b9550bfc955ecf66c0b803e3002e0a.tar.bz2
rails-bbfc6cda82b9550bfc955ecf66c0b803e3002e0a.zip
Remove extra whitespaces from guides
Diffstat (limited to 'railties/guides/source/active_record_querying.textile')
-rw-r--r--railties/guides/source/active_record_querying.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/active_record_querying.textile b/railties/guides/source/active_record_querying.textile
index b970c55327..7cdffe4c2e 100644
--- a/railties/guides/source/active_record_querying.textile
+++ b/railties/guides/source/active_record_querying.textile
@@ -546,7 +546,7 @@ Active Record provides two locking mechanisms:
h4. Optimistic Locking
-Optimistic locking allows multiple users to access the same record for edits, and assumes a minimum of conflicts with the data. It does this by checking whether another process has made changes to a record since it was opened. An +ActiveRecord::StaleObjectError+ exception is thrown if that has occurred and the update is ignored.
+Optimistic locking allows multiple users to access the same record for edits, and assumes a minimum of conflicts with the data. It does this by checking whether another process has made changes to a record since it was opened. An +ActiveRecord::StaleObjectError+ exception is thrown if that has occurred and the update is ignored.
<strong>Optimistic locking column</strong>
@@ -1060,7 +1060,7 @@ If you want to find the sum of a field for all records in your table you can cal
Client.sum("orders_count")
</ruby>
-For options, please see the parent section, "Calculations":#calculations.
+For options, please see the parent section, "Calculations":#calculations.
h3. Changelog