aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkaygee <keith.gautreaux@gmail.com>2010-06-16 12:10:50 -0500
committerkaygee <keith.gautreaux@gmail.com>2010-06-16 12:10:50 -0500
commit317a75bf5860a9ab5d5535ccb4aedfabc83644d6 (patch)
tree23f37849c44ac320083dc8fcac238c3aa652024b
parent746347d997da14d6c67378518a4d7162c660212d (diff)
downloadrails-317a75bf5860a9ab5d5535ccb4aedfabc83644d6.tar.gz
rails-317a75bf5860a9ab5d5535ccb4aedfabc83644d6.tar.bz2
rails-317a75bf5860a9ab5d5535ccb4aedfabc83644d6.zip
Fix incorrect pluralization in 'These methods allows you to pass arguments...'.
-rw-r--r--railties/guides/source/active_record_querying.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_record_querying.textile b/railties/guides/source/active_record_querying.textile
index 73f3ebafbe..fc07dd1267 100644
--- a/railties/guides/source/active_record_querying.textile
+++ b/railties/guides/source/active_record_querying.textile
@@ -51,7 +51,7 @@ Active Record will perform queries on the database for you and is compatible wit
h3. Retrieving Objects from the Database
-To retrieve objects from the database, Active Record provides several finder methods. These methods allows you to pass arguments into it to perform certain queries on your database without the need of writing raw SQL.
+To retrieve objects from the database, Active Record provides several finder methods. These methods allow you to pass arguments into it to perform certain queries on your database without the need of writing raw SQL.
The methods are:
* +where+