diff options
author | Arthur Nogueira Neves <arthurnn@gmail.com> | 2014-03-19 16:49:21 -0400 |
---|---|---|
committer | Arthur Nogueira Neves <arthurnn@gmail.com> | 2014-03-19 16:49:21 -0400 |
commit | c7a307ccd1a9bb10f0e05e055033a44d90cee0e3 (patch) | |
tree | 76fca7756458546b16d86951b6b45f9884cf3de3 | |
parent | 8cea8ae278c0e0417e5d58a387cc5d31c0590251 (diff) | |
parent | 2ec51d03ac30b8d86644a8e47872cb61f05d01f8 (diff) | |
download | rails-c7a307ccd1a9bb10f0e05e055033a44d90cee0e3.tar.gz rails-c7a307ccd1a9bb10f0e05e055033a44d90cee0e3.tar.bz2 rails-c7a307ccd1a9bb10f0e05e055033a44d90cee0e3.zip |
Merge pull request #14429 from chriskohlbrenner/fix_typo_ar_querying_guide
Fix a typo to make clause plural [ci skip]
-rw-r--r-- | guides/source/active_record_querying.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index 4900f176a6..0a332d7dd9 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -961,7 +961,7 @@ SELECT clients.* FROM clients LEFT OUTER JOIN addresses ON addresses.client_id = WARNING: This method only works with `INNER JOIN`. -Active Record lets you use the names of the [associations](association_basics.html) defined on the model as a shortcut for specifying `JOIN` clause for those associations when using the `joins` method. +Active Record lets you use the names of the [associations](association_basics.html) defined on the model as a shortcut for specifying `JOIN` clauses for those associations when using the `joins` method. For example, consider the following `Category`, `Post`, `Comment`, `Guest` and `Tag` models: |