diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2015-03-18 07:17:34 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2015-03-18 07:17:34 +0000 |
commit | 314ab7b14d99094e9cedd36165489f731841bd66 (patch) | |
tree | 5c3086d03d5d63710dcfb84655a6591ebc93f5e1 /guides | |
parent | 29b539c7251589d13a0b27c41fe551fea1546448 (diff) | |
parent | 84cd102b45fe187f4357078017611148250f067e (diff) | |
download | rails-314ab7b14d99094e9cedd36165489f731841bd66.tar.gz rails-314ab7b14d99094e9cedd36165489f731841bd66.tar.bz2 rails-314ab7b14d99094e9cedd36165489f731841bd66.zip |
Merge pull request #19380 from mechanicles/fix-wrong-model-name
Fix wrong model name for 'Articles', It should be 'Article' [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md index 514bec4bf6..150f4c0f14 100644 --- a/guides/source/active_record_basics.md +++ b/guides/source/active_record_basics.md @@ -122,7 +122,7 @@ to Active Record instances: * `(association_name)_type` - Stores the type for [polymorphic associations](association_basics.html#polymorphic-associations). * `(table_name)_count` - Used to cache the number of belonging objects on - associations. For example, a `comments_count` column in a `Articles` class that + associations. For example, a `comments_count` column in an `Article` class that has many instances of `Comment` will cache the number of existent comments for each article. |