aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_basics.md
diff options
context:
space:
mode:
authorSantosh Wadghule <santosh.wadghule@gmail.com>2015-03-18 12:33:05 +0530
committerSantosh Wadghule <santosh.wadghule@gmail.com>2015-03-18 12:33:05 +0530
commit84cd102b45fe187f4357078017611148250f067e (patch)
tree5c3086d03d5d63710dcfb84655a6591ebc93f5e1 /guides/source/active_record_basics.md
parent29b539c7251589d13a0b27c41fe551fea1546448 (diff)
downloadrails-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/active_record_basics.md')
-rw-r--r--guides/source/active_record_basics.md2
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.