docs/overriding.md in bullet_train-1.0.45 vs docs/overriding.md in bullet_train-1.0.46
- old
+ new
@@ -10,10 +10,10 @@
For this reason, common points of extension like framework-provided models and controllers actually exist as a kind of "stub" in the local repository, but include their base functionality from framework-provided concerns, like so:
```
class User < ApplicationRecord
- include Users::Core
+ include Users::Base
# ...
end
```