From e087b5362f89403e69ea47b7af1f60b87c467305 Mon Sep 17 00:00:00 2001 From: Kenta Aikawa Date: Tue, 14 Nov 2023 22:10:23 +0900 Subject: [PATCH] Fix to element (#2569) --- .../Documentation.docc/Articles/MigratingTo1.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md index eabbeec2aefb..551a662363ab 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md @@ -243,7 +243,7 @@ will need to insert a `.element` layer: ```diff -case let .row(id: id, action: .buttonTapped): -+case let .rows(.elements(id: id, action: .buttonTapped)): ++case let .rows(.element(id: id, action: .buttonTapped)): ``` [swift-case-paths]: http://github.com/pointfreeco/swift-case-paths