Vatavuk / verano

Dependency injection framework in Object Oriented style
MIT License
4 stars 1 forks source link

Misprint in README #37

Open skapral opened 5 years ago

skapral commented 5 years ago
public class MyOrder implements Order {

    private final Items items;

    public UserOrder(Items items) {
        this.items = items;
    }

    @Override
    public void showItem(String id) {
        this.items.printItem(id);
    }
}

The constructor's name and class name should be the same.