Unverified Commit 39551013 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Random unresolved doc reference fixes I missed before (#62582)

parent e762e7e0
......@@ -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();
......
......@@ -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
......
......@@ -818,7 +818,7 @@ abstract class WidgetController {
Future<void> 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.
///
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment