Fix wrong model name for 'Articles', It should be 'Article' [ci skip]

- Also changed 'a' to 'an' for 'Article' word.
This commit is contained in:
Santosh Wadghule 2015-03-18 12:33:05 +05:30
parent 29b539c725
commit 84cd102b45
1 changed files with 1 additions and 1 deletions

View File

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