aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_querying.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-11-29 04:35:13 -0800
committerSteve Klabnik <steve@steveklabnik.com>2012-11-29 04:35:13 -0800
commit27138386ad8dbda2eb44e622515626f352fd3b22 (patch)
tree6844107e09d9e30bc726958c8073a2e11a5dbd9a /guides/source/active_record_querying.md
parent0c294e0010810e3d9a4bcfa72ab96ff2af0240a6 (diff)
downloadrails-27138386ad8dbda2eb44e622515626f352fd3b22.tar.gz
rails-27138386ad8dbda2eb44e622515626f352fd3b22.tar.bz2
rails-27138386ad8dbda2eb44e622515626f352fd3b22.zip
ActiveRecord -> Active Record
The proper name, as per the documentation guides, is 'Active Record.' I've updated several references to it as 'ActiveRecord'.
Diffstat (limited to 'guides/source/active_record_querying.md')
-rw-r--r--guides/source/active_record_querying.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index 32c139df99..3616257c77 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -466,7 +466,7 @@ The field name can also be a string:
Client.where('locked' => true)
```
-In the case of a belongs_to relationship, an association key can be used to specify the model if an ActiveRecord object is used as the value. This method works with polymorphic relationships as well.
+In the case of a belongs_to relationship, an association key can be used to specify the model if an Active Record object is used as the value. This method works with polymorphic relationships as well.
```ruby
Post.where(author: author)