From 642af1d50ef73f93b182dbd9a8ddcf011483352c Mon Sep 17 00:00:00 2001 From: Takehiro Kaneko Date: Mon, 23 Dec 2024 02:06:10 +0900 Subject: [PATCH] Fix NavigationStackController docs (#3540) --- .../Articles/MigrationGuides/MigratingTo1.13.md | 2 +- .../Documentation.docc/Articles/StackBasedNavigation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.13.md b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.13.md index 1a1d68b9e19d..22eb3b4f3666 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.13.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.13.md @@ -107,7 +107,7 @@ class AppController: NavigationStackController { } } - self.model = model + self.store = store } } ``` diff --git a/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md b/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md index 0cc16c49dc5c..ca46ea87a582 100644 --- a/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md +++ b/Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md @@ -683,7 +683,7 @@ class AppController: NavigationStackController { } } - self.model = model + self.store = store } } ```