From fa31c934fa112dea09858de09ba82bdb32328211 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Mon, 13 Nov 2023 15:59:46 -0800 Subject: [PATCH] Update MigratingTo1.4.md --- .../Documentation.docc/Articles/MigratingTo1.4.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md index 80a9632aa2ae..3b44e72968c3 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md @@ -147,7 +147,7 @@ specify a concrete action: ```swift store.receive(.response(.success("Hello!"))) { - … + // ... } ``` @@ -159,7 +159,7 @@ tests: ```swift store.receive(.child(.response(.success("Hello!")))) { - … + // ... } ``` @@ -170,7 +170,7 @@ since typically that is covered in the state assertion: ```swift store.receive(\.child.response.success) { - … + // ... } ``` @@ -222,7 +222,7 @@ identified action: ```swift Reduce { state, action in -// ... + // ... } .forEach(\.rows, action: \.rows) { RowFeature()