Skip to content

Commit a24edef

Browse files
authored
Merge pull request rails#52041 from yuler/patch-1
Fix typo in active_record_basics.md [skip ci]
2 parents 63db7d5 + 25b26cf commit a24edef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/active_record_basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ purposes.
250250
Active Record models are placed under the `app/models` directory by default. But
251251
you may want to organize your models by placing similar models under their own
252252
folder and namespace. For example, `order.rb` and `review.rb` under
253-
`app/models/books` with `Book::Order` and `Book::Review` class names,
253+
`app/models/book` with `Book::Order` and `Book::Review` class names,
254254
respectively. You can create namespaced models with Active Record.
255255

256256
In the case where the `Book` module does not already exist, the `generate`

0 commit comments

Comments
 (0)