diff options
author | Joseph Pecoraro <joepeck02@gmail.com> | 2009-05-29 21:09:01 -0400 |
---|---|---|
committer | Joseph Pecoraro <joepeck02@gmail.com> | 2009-05-29 21:09:01 -0400 |
commit | 7749e1784c1127cf532d9f41a0331ed266ebec6d (patch) | |
tree | cc35591094caa5d896aa7536422b5a3bab089d2f /railties/guides/source/active_record_querying.textile | |
parent | 3aeec3209c04219c3e78cce060e6c0e284e60108 (diff) | |
download | rails-7749e1784c1127cf532d9f41a0331ed266ebec6d.tar.gz rails-7749e1784c1127cf532d9f41a0331ed266ebec6d.tar.bz2 rails-7749e1784c1127cf532d9f41a0331ed266ebec6d.zip |
Grammer: 'a' => 'an' where applicable.
Diffstat (limited to 'railties/guides/source/active_record_querying.textile')
-rw-r--r-- | railties/guides/source/active_record_querying.textile | 2 |
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 3187a82981..3cf536f683 100644 --- a/railties/guides/source/active_record_querying.textile +++ b/railties/guides/source/active_record_querying.textile @@ -238,7 +238,7 @@ WARNING: Building your own conditions as pure strings can leave you vulnerable t h4. Array Conditions -Now what if that number could vary, say as a argument from somewhere, or perhaps from the user's level status somewhere? The find then becomes something like: +Now what if that number could vary, say as an argument from somewhere, or perhaps from the user's level status somewhere? The find then becomes something like: <ruby> Client.first(:conditions => ["orders_count = ?", params[:orders]]) |