diff options
author | Santosh Wadghule <santosh.wadghule@gmail.com> | 2015-03-18 12:33:05 +0530 |
---|---|---|
committer | Santosh Wadghule <santosh.wadghule@gmail.com> | 2015-03-18 12:33:05 +0530 |
commit | 84cd102b45fe187f4357078017611148250f067e (patch) | |
tree | 5c3086d03d5d63710dcfb84655a6591ebc93f5e1 /guides/source | |
parent | 29b539c7251589d13a0b27c41fe551fea1546448 (diff) | |
download | rails-84cd102b45fe187f4357078017611148250f067e.tar.gz rails-84cd102b45fe187f4357078017611148250f067e.tar.bz2 rails-84cd102b45fe187f4357078017611148250f067e.zip |
Fix wrong model name for 'Articles', It should be 'Article' [ci skip]
- Also changed 'a' to 'an' for 'Article' word.
Diffstat (limited to 'guides/source')
-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. |