aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_querying.md
diff options
context:
space:
mode:
authorKatie Oldaker <k.oldaker@modcloth.com>2012-12-07 12:50:09 -0500
committerKatie Oldaker <k.oldaker@modcloth.com>2012-12-07 12:50:09 -0500
commit7c05ea23a0e6394c61f3d2c1d0ba345784329427 (patch)
tree8472c0ab09bbe95d48659681609cf466c10812d9 /guides/source/active_record_querying.md
parent70b809436fdc4f4f95155b0e5968e6cd10b80cd0 (diff)
downloadrails-7c05ea23a0e6394c61f3d2c1d0ba345784329427.tar.gz
rails-7c05ea23a0e6394c61f3d2c1d0ba345784329427.tar.bz2
rails-7c05ea23a0e6394c61f3d2c1d0ba345784329427.zip
Fixed grammar in a lot of guide prologues.
Diffstat (limited to 'guides/source/active_record_querying.md')
-rw-r--r--guides/source/active_record_querying.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index b22cc09951..4ee6374175 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -5,13 +5,13 @@ This guide covers different ways to retrieve data from the database using Active
After reading this guide, you will know:
-* Find records using a variety of methods and conditions.
-* Specify the order, retrieved attributes, grouping, and other properties of the found records.
-* Use eager loading to reduce the number of database queries needed for data retrieval.
-* Use dynamic finders methods.
-* Check for the existence of particular records.
-* Perform various calculations on Active Record models.
-* Run EXPLAIN on relations.
+* How to find records using a variety of methods and conditions.
+* How to specify the order, retrieved attributes, grouping, and other properties of the found records.
+* How to use eager loading to reduce the number of database queries needed for data retrieval.
+* How to use dynamic finders methods.
+* How to check for the existence of particular records.
+* How to perform various calculations on Active Record models.
+* How to run EXPLAIN on relations.
--------------------------------------------------------------------------------