diff options
author | Daniel Dawson <dpdawson@dpdawson.org> | 2013-07-11 12:09:59 +0100 |
---|---|---|
committer | Daniel Dawson <dpdawson@dpdawson.org> | 2013-07-11 12:09:59 +0100 |
commit | 8cece08ce385f5618222d8a7990b6f75b92e5d43 (patch) | |
tree | 1cecf9cd209aea572d50f96a40967dabd72b94c7 /guides | |
parent | 2692e38efac7287cffd0d31f46eed52938983763 (diff) | |
download | rails-8cece08ce385f5618222d8a7990b6f75b92e5d43.tar.gz rails-8cece08ce385f5618222d8a7990b6f75b92e5d43.tar.bz2 rails-8cece08ce385f5618222d8a7990b6f75b92e5d43.zip |
Fix a grammatical error/typo in Active Record Associations guide.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/association_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/association_basics.md b/guides/source/association_basics.md index 884aa6a9ea..e6a66f3fa1 100644 --- a/guides/source/association_basics.md +++ b/guides/source/association_basics.md @@ -953,7 +953,7 @@ end ##### `includes` -You can use the `includes` method let you specify second-order associations that should be eager-loaded when this association is used. For example, consider these models: +You can use the `includes` method to specify second-order associations that should be eager-loaded when this association is used. For example, consider these models: ```ruby class LineItem < ActiveRecord::Base |