aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_basics.md
diff options
context:
space:
mode:
authorBrian Davis <contact@briandavisdev.com>2015-05-24 19:50:20 -0700
committerBrian Davis <contact@briandavisdev.com>2015-05-24 19:50:20 -0700
commit55c79e66d356e685b2f6aca1c6b94fb44737f096 (patch)
tree4806ef4a16f6153a519091036a67cc49b5463ae1 /guides/source/active_record_basics.md
parentac1368a36768b547c72024031009c8de2f525d32 (diff)
downloadrails-55c79e66d356e685b2f6aca1c6b94fb44737f096.tar.gz
rails-55c79e66d356e685b2f6aca1c6b94fb44737f096.tar.bz2
rails-55c79e66d356e685b2f6aca1c6b94fb44737f096.zip
Grammar fix to Active Record Basics guide. [ci skip]
Diffstat (limited to 'guides/source/active_record_basics.md')
-rw-r--r--guides/source/active_record_basics.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md
index 6551ba0389..a227b54040 100644
--- a/guides/source/active_record_basics.md
+++ b/guides/source/active_record_basics.md
@@ -74,8 +74,8 @@ By default, Active Record uses some naming conventions to find out how the
mapping between models and database tables should be created. Rails will
pluralize your class names to find the respective database table. So, for
a class `Book`, you should have a database table called **books**. The Rails
-pluralization mechanisms are very powerful, being capable to pluralize (and
-singularize) both regular and irregular words. When using class names composed
+pluralization mechanisms are very powerful, being capable of pluralizing (and
+singularizing) both regular and irregular words. When using class names composed
of two or more words, the model class name should follow the Ruby conventions,
using the CamelCase form, while the table name must contain the words separated
by underscores. Examples: