aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorAdam Demirel <adxm@msn.com>2018-10-17 07:57:56 +1100
committerAdam Demirel <adxm@msn.com>2018-10-17 07:57:56 +1100
commitb69a6c3214800dafb4d467e8181dfaeb4f98ab4f (patch)
tree7cc9a083fe89161c2c94b5adf8b7ba566bb22d03 /guides/source
parent4c15ed775304abd9e3e41afef4e7fec4077f699b (diff)
downloadrails-b69a6c3214800dafb4d467e8181dfaeb4f98ab4f.tar.gz
rails-b69a6c3214800dafb4d467e8181dfaeb4f98ab4f.tar.bz2
rails-b69a6c3214800dafb4d467e8181dfaeb4f98ab4f.zip
Fix mapping of content
Diffstat (limited to 'guides/source')
-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 |
| ---------------- | -------------- |