From 395510134ccf5dfd36ded2619a34961259ef4371 Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Thu, 30 Jul 2020 12:01:04 -0700 Subject: [PATCH] Random unresolved doc reference fixes I missed before (#62582) --- packages/flutter_driver/lib/src/common/wait.dart | 4 ++-- .../lib/src/material_localizations.dart | 12 ++++++------ packages/flutter_test/lib/src/controller.dart | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/flutter_driver/lib/src/common/wait.dart b/packages/flutter_driver/lib/src/common/wait.dart index 4d42eca1154..a3243a54754 100644 --- a/packages/flutter_driver/lib/src/common/wait.dart +++ b/packages/flutter_driver/lib/src/common/wait.dart @@ -135,9 +135,9 @@ class SerializationException implements Exception { /// /// This class is sent from the driver script running on the host to the driver /// extension on device to perform waiting on a given condition. In the extension, -/// it will be converted to a [WaitCondition] that actually defines the wait logic. +/// it will be converted to a `WaitCondition` that actually defines the wait logic. /// -/// If you subclass this, you also need to implement a [WaitCondition] in the extension. +/// If you subclass this, you also need to implement a `WaitCondition` in the extension. abstract class SerializableWaitCondition { /// A const constructor to allow subclasses to be const. const SerializableWaitCondition(); diff --git a/packages/flutter_localizations/lib/src/material_localizations.dart b/packages/flutter_localizations/lib/src/material_localizations.dart index b1d66dd155c..465d3b0b8b0 100644 --- a/packages/flutter_localizations/lib/src/material_localizations.dart +++ b/packages/flutter_localizations/lib/src/material_localizations.dart @@ -74,12 +74,12 @@ abstract class GlobalMaterialLocalizations implements MaterialLocalizations { /// /// 1. The string that would be returned by [Intl.canonicalizedLocale] for /// the locale. - /// 2. The [intl.DateFormat] for [formatYear]. - /// 3. The [int.DateFormat] for [formatShortDate]. - /// 4. The [intl.DateFormat] for [formatMediumDate]. - /// 5. The [intl.DateFormat] for [formatFullDate]. - /// 6. The [intl.DateFormat] for [formatMonthYear]. - /// 7. The [intl.DateFormat] for [formatShortMonthDay]. + /// 2. The [DateFormat] for [formatYear]. + /// 3. The [DateFormat] for [formatShortDate]. + /// 4. The [DateFormat] for [formatMediumDate]. + /// 5. The [DateFormat] for [formatFullDate]. + /// 6. The [DateFormat] for [formatMonthYear]. + /// 7. The [DateFormat] for [formatShortMonthDay]. /// 8. The [NumberFormat] for [formatDecimal] (also used by [formatHour] and /// [formatTimeOfDay] when [timeOfDayFormat] doesn't use [HourFormat.HH]). /// 9. The [NumberFormat] for [formatHour] and the hour part of diff --git a/packages/flutter_test/lib/src/controller.dart b/packages/flutter_test/lib/src/controller.dart index 4cea9867afd..ce89e815fbf 100644 --- a/packages/flutter_test/lib/src/controller.dart +++ b/packages/flutter_test/lib/src/controller.dart @@ -818,7 +818,7 @@ abstract class WidgetController { Future ensureVisible(Finder finder) => Scrollable.ensureVisible(element(finder)); /// Repeatedly scrolls the `scrollable` by `delta` in the - /// [Scrpllable.axisDirection] until `finder` is visible. + /// [Scrollable.axisDirection] until `finder` is visible. /// /// Between each scroll, wait for `duration` time for settling. ///