README.md in clean-architecture-1.1.0 vs README.md in clean-architecture-1.1.1
- old
+ new
@@ -130,15 +130,9 @@
## Practical suggestions for implementation
* The code that manages your inputs (e.g. a Rails controller) instantiates a persistence layer
object
- - Suggest: a class that implements both the `Persistence` interface and your own persistence
- interface
-
-```
- persistence = ActiveRecordPersistence.new
-```
* The code that manages your inputs (e.g. a Rails controller) instantiates a use case actor
object
- Suggest: a class that implements the `UseCaseActor` interface