Merge pull request #14429 from chriskohlbrenner/fix_typo_ar_querying_guide

Fix a typo to make clause plural [ci skip]
This commit is contained in:
Arthur Nogueira Neves 2014-03-19 16:49:21 -04:00
commit c7a307ccd1
1 changed files with 1 additions and 1 deletions

View File

@ -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: