aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-02-28 03:09:06 +0100
committerXavier Noria <fxn@hashref.com>2009-02-28 03:09:06 +0100
commit626c724b62d86046a96f3d2cdeeffc67e60f40e0 (patch)
tree7a59eb52c379406e2d86ef0f34f213fcedc70e96 /railties
parent8a4247a3ffd735b72d9deb3325dc263450c3248b (diff)
downloadrails-626c724b62d86046a96f3d2cdeeffc67e60f40e0.tar.gz
rails-626c724b62d86046a96f3d2cdeeffc67e60f40e0.tar.bz2
rails-626c724b62d86046a96f3d2cdeeffc67e60f40e0.zip
fixes broken links in AR finders guide
Diffstat (limited to 'railties')
-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 5da15bbb5c..03e1b264b2 100644
--- a/railties/guides/source/active_record_querying.textile
+++ b/railties/guides/source/active_record_querying.textile
@@ -314,7 +314,7 @@ This will find all clients created yesterday by using a +BETWEEN+ SQL statement:
SELECT * FROM clients WHERE (clients.created_at BETWEEN '2008-12-21 00:00:00' AND '2008-12-22 00:00:00')
</sql>
-This demonstrates a shorter syntax for the examples in "Array Conditions":#array-conditions
+This demonstrates a shorter syntax for the examples in "Array Conditions":#arrayconditions
h5. Subset conditions
@@ -376,7 +376,7 @@ By default, <tt>Model.find</tt> selects all the fields from the result set using
To select only a subset of fields from the result set, you can specify the subset via +:select+ option on the +find+.
-NOTE: If the +:select+ option is used, all the returning objects will be "read only":#read-only objects.
+NOTE: If the +:select+ option is used, all the returning objects will be "read only":#readonlyobjects.
<br />