Skip to content

Commit 3810aee

Browse files
committed
Fix typo in docs.
1 parent 888af2f commit 3810aee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingToTheReducerProtocol.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,10 @@ struct AppReducer: ReducerProtocol {
251251
Scope(state: \.tabA, action: /Action.tabA) {
252252
TabA()
253253
}
254-
Scope(state: \.tabB, action: /Action.tabC) {
254+
Scope(state: \.tabB, action: /Action.tabB) {
255255
TabB()
256256
}
257-
Scope(state: \.tabB, action: /Action.tabC) {
257+
Scope(state: \.tabC, action: /Action.tabC) {
258258
TabC()
259259
}
260260
}

0 commit comments

Comments
 (0)