From f3983c3a521a41dd12f0c1433ff47a8db341f86e Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Mon, 13 Nov 2023 15:58:20 -0800 Subject: [PATCH] Update MigratingTo1.4.md --- .../Documentation.docc/Articles/MigratingTo1.4.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md index 20cdd73e571c..80a9632aa2ae 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md @@ -124,13 +124,13 @@ you can use the subscript ``IdentifiedAction/AllCasePaths-swift.struct/subscript receive a particular action for an element: ```swift -store.receive(.rows[id: 0].response.success) +store.receive(\.rows[id: 0].response.success) ``` And the same goes for ``StackAction`` too: ```swift -store.receive(.path[id: 0].response.success) +store.receive(.\path[id: 0].response.success) ``` ### Moving off of TaskResult