We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd34949 commit 47f753cCopy full SHA for 47f753c
Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md
@@ -404,10 +404,10 @@ struct Feature {
404
405
@Reducer
406
struct Path {
407
- enum State: Equatable { case counter(Counter.State) }
408
- enum Action { case counter(Counter.Action) }
+ enum State: Equatable { case counter(CounterFeature.State) }
+ enum Action { case counter(CounterFeature.Action) }
409
var body: some ReducerOf<Self> {
410
- Scope(state: \.counter, action: \.counter) { Counter() }
+ Scope(state: \.counter, action: \.counter) { CounterFeature() }
411
}
412
413
0 commit comments