Skip to content

Commit 64345f1

Browse files
authored
Update README.md
1 parent 9d8cfad commit 64345f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ In order to have a predictable app state, it is important that the reducer is al
7575
To maintain our state and delegate the actions to the reducers, we need a store. Let's call it `mainStore` and define it as a global constant, for example in the app delegate file:
7676

7777
```swift
78-
fileprivate let initialState = AppState(counter: 0)
78+
let initialState = AppState(counter: 0)
7979

8080
let mainStore = Store(
8181
reducer: appReducer,

0 commit comments

Comments
 (0)