aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorGannon McGibbon <gannon.mcgibbon@gmail.com>2018-10-16 17:55:51 -0400
committerGitHub <noreply@github.com>2018-10-16 17:55:51 -0400
commit6647341aead6b90c57dd0e9c42b0350f0747de45 (patch)
tree1076cac5d8fcae496180ab1837ff846de954f31c /guides
parente53acfde0ff233fb1d281119856595043bbf207e (diff)
parentb69a6c3214800dafb4d467e8181dfaeb4f98ab4f (diff)
downloadrails-6647341aead6b90c57dd0e9c42b0350f0747de45.tar.gz
rails-6647341aead6b90c57dd0e9c42b0350f0747de45.tar.bz2
rails-6647341aead6b90c57dd0e9c42b0350f0747de45.zip
Merge pull request #34231 from brasscapon/rails_five
Fix mapping of content [ci skip]
Diffstat (limited to 'guides')
-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 fad4c19827..b9e24099b1 100644
--- a/guides/source/active_record_basics.md
+++ b/guides/source/active_record_basics.md
@@ -82,9 +82,9 @@ 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:
-* Database Table - Plural with underscores separating words (e.g., `book_clubs`).
* Model Class - Singular with the first letter of each word capitalized (e.g.,
`BookClub`).
+* Database Table - Plural with underscores separating words (e.g., `book_clubs`).
| Model / Class | Table / Schema |
| ---------------- | -------------- |