From 3b10a111f40f0f83efdecda8ef14744871063736 Mon Sep 17 00:00:00 2001 From: Samuel <68549184+Mayb3Nots@users.noreply.github.com> Date: Fri, 12 May 2023 04:13:47 +0800 Subject: [PATCH] fix: platform_dispatcher documentation typo (flutter/engine#41739) fixes [https://github.com/flutter/flutter/issues/126082](https://github.com/flutter/flutter/issues/126082) *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style --- engine/src/flutter/lib/ui/platform_dispatcher.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/lib/ui/platform_dispatcher.dart b/engine/src/flutter/lib/ui/platform_dispatcher.dart index 4bfdd52288f..747405fb8ee 100644 --- a/engine/src/flutter/lib/ui/platform_dispatcher.dart +++ b/engine/src/flutter/lib/ui/platform_dispatcher.dart @@ -115,7 +115,7 @@ class PlatformDispatcher { /// The [PlatformDispatcher] singleton. /// - /// Consider avoiding static references to this singleton though + /// Consider avoiding static references to this singleton through /// [PlatformDispatcher.instance] and instead prefer using a binding for /// dependency resolution such as `WidgetsBinding.instance.platformDispatcher`. ///