From 5e177e47e01a3d72a6addcbcd8525f2f069d3beb Mon Sep 17 00:00:00 2001 From: mootw Date: Thu, 5 Dec 2024 02:27:49 -0600 Subject: [PATCH] fix lint --- lib/src/misc/extensions.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/misc/extensions.dart b/lib/src/misc/extensions.dart index 1cdeb1f2a..b6284efe1 100644 --- a/lib/src/misc/extensions.dart +++ b/lib/src/misc/extensions.dart @@ -3,10 +3,10 @@ import 'dart:ui'; import 'package:meta/meta.dart'; -/// Extension methods for the math.[Point] class +/// Extension methods for the [math.Point] class @internal extension PointExtension on math.Point { - /// Create a new [Point] where the [x] and [y] values are divided by [factor]. + /// Create a new [math.Point] where the [x] and [y] values are divided by [factor]. math.Point operator /(num factor) { return math.Point(x / factor, y / factor); } @@ -18,7 +18,7 @@ extension PointExtension on math.Point { /// Extension methods for [Offset] @internal extension OffsetExtension on Offset { - /// Creates a [Point] representation of this offset. + /// Creates a [math.Point] representation of this offset. math.Point toPoint() => math.Point(dx, dy); /// Create a new [Offset] whose [dx] and [dy] values are rotated clockwise by