Skip to content

Commit

Permalink
Merge pull request #20288 from brian-davis/brian-davis
Browse files Browse the repository at this point in the history
Grammar fix to Active Record Basics guide. [ci skip]
  • Loading branch information
Zachary Scott committed May 25, 2015
2 parents ac1368a + 55c79e6 commit 6a07404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/source/active_record_basics.md
Expand Up @@ -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:
Expand Down

0 comments on commit 6a07404

Please sign in to comment.