Skip to content

Commit 642af1d

Browse files
authored
Fix NavigationStackController docs (#3540)
1 parent d602618 commit 642af1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.13.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class AppController: NavigationStackController {
107107
}
108108
}
109109

110-
self.model = model
110+
self.store = store
111111
}
112112
}
113113
```

Sources/ComposableArchitecture/Documentation.docc/Articles/StackBasedNavigation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ class AppController: NavigationStackController {
683683
}
684684
}
685685

686-
self.model = model
686+
self.store = store
687687
}
688688
}
689689
```

0 commit comments

Comments
 (0)