diff --git a/README.md b/README.md index fe0f3a2..af76020 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,7 @@ After the stores are updated, they notify the observers that their state has cha so the views may query the new state and update themselves. ```swift -struct Counter { - var count = 0 -} +struct Counter { var count = 0 } let store = Store(model: Counter()) ```