From 8181bbe36163fbfe732be0d3b65a6ed3a51797f0 Mon Sep 17 00:00:00 2001 From: Goddchen Date: Mon, 10 Jul 2023 18:37:06 +0200 Subject: [PATCH] go_router: docs: fix typo in StatefulShellRoute.indexedStack(...) docs (#4341) --- packages/go_router/CHANGELOG.md | 3 +++ packages/go_router/lib/src/route.dart | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/go_router/CHANGELOG.md b/packages/go_router/CHANGELOG.md index c345b25e88..bd8f397273 100644 --- a/packages/go_router/CHANGELOG.md +++ b/packages/go_router/CHANGELOG.md @@ -1,3 +1,6 @@ +## NEXT +- Fixes a typo in docs for `StatefulShellRoute.indexedStack(...)`. + ## 9.0.3 - Adds helpers for go_router_builder for StatefulShellRoute support diff --git a/packages/go_router/lib/src/route.dart b/packages/go_router/lib/src/route.dart index 917aaa7287..7c02236ea0 100644 --- a/packages/go_router/lib/src/route.dart +++ b/packages/go_router/lib/src/route.dart @@ -757,7 +757,7 @@ class StatefulShellRoute extends ShellRouteBase { /// /// This constructor provides an IndexedStack based implementation for the /// container ([navigatorContainerBuilder]) used to manage the Widgets - /// representing the branch Navigators. A part from that, this constructor + /// representing the branch Navigators. Apart from that, this constructor /// works the same way as the default constructor. /// /// See [Stateful Nested Navigation](https://github.com/flutter/packages/blob/main/packages/go_router/example/lib/stacked_shell_route.dart)