From a45cdcc2b16752db641b659578b14cd8c48000ba Mon Sep 17 00:00:00 2001 From: Ryu <87907656+Ryu0118@users.noreply.github.com> Date: Tue, 16 May 2023 14:59:52 +0900 Subject: [PATCH] Fix Document in Testing.md --- .../Documentation.docc/Articles/Testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ComposableArchitecture/Documentation.docc/Articles/Testing.md b/Sources/ComposableArchitecture/Documentation.docc/Articles/Testing.md index c2203e10c16c..8c7f2f5aef77 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/Testing.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/Testing.md @@ -674,7 +674,7 @@ struct Feature: ReducerProtocol { func reduce(into state: inout State, action: Action) -> EffectTask { switch action { case .addButtonTapped: - state.values.append(Model() + state.values.append(Model()) return .none } }