From 626c724b62d86046a96f3d2cdeeffc67e60f40e0 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Sat, 28 Feb 2009 03:09:06 +0100 Subject: fixes broken links in AR finders guide --- railties/guides/source/active_record_querying.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'railties') 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') -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, Model.find 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.
-- cgit v1.2.3