From 92150bd1d85fef528d6bfea19f7445682d884b01 Mon Sep 17 00:00:00 2001 From: Ryu <87907656+Ryu0118@users.noreply.github.com> Date: Thu, 16 Nov 2023 02:40:24 +0900 Subject: [PATCH] Fix a syntax error in Migrate To 1.4. (#2574) --- .../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 276687de2b61..165c7f429e18 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigratingTo1.4.md @@ -207,7 +207,7 @@ case: ```swift enum Action { // ... - rows(IdentifiedActionOf) + case rows(IdentifiedActionOf) } ```