diff --git a/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md b/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md index ac4c5a87bb6f..f1df9b54bb45 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md @@ -404,10 +404,10 @@ struct Feature { @Reducer struct Path { - enum State: Equatable { case counter(Counter.State) } - enum Action { case counter(Counter.Action) } + enum State: Equatable { case counter(CounterFeature.State) } + enum Action { case counter(CounterFeature.Action) } var body: some ReducerOf { - Scope(state: \.counter, action: \.counter) { Counter() } + Scope(state: \.counter, action: \.counter) { CounterFeature() } } }