diff --git a/sky/engine/core/dart/painting.dart b/sky/engine/core/dart/painting.dart index 527044ddd3709..8a65aa769c842 100644 --- a/sky/engine/core/dart/painting.dart +++ b/sky/engine/core/dart/painting.dart @@ -179,7 +179,7 @@ enum BlurStyle { // These mirror SkBlurStyle and must be kept in sync. /// Fuzzy inside and outside. This is useful for painting shadows that are - /// offset from the shape that ostensible is casting the shadow. + /// offset from the shape that ostensibly is casting the shadow. normal, /// Solid inside, fuzzy outside. This corresponds to drawing the shape, and diff --git a/sky/engine/core/painting/OffsetBase.dart b/sky/engine/core/painting/OffsetBase.dart index 64be00df4292e..edba965364936 100644 --- a/sky/engine/core/painting/OffsetBase.dart +++ b/sky/engine/core/painting/OffsetBase.dart @@ -53,10 +53,10 @@ abstract class OffsetBase { /// less, nor greater than, nor equal to, another. bool operator >(OffsetBase other) => _dx > other._dx && _dy > other._dy; - /// Less-than-or-equal-to operator. Compares an [Offset] or [Size] to another - /// [Offset] or [Size], and returns true if both the horizontal and vertical - /// values of the left-hand-side operand are bigger than or equal to the - /// horizontal and vertical values of the right-hand-side operand + /// Greater-than-or-equal-to operator. Compares an [Offset] or [Size] to + /// another [Offset] or [Size], and returns true if both the horizontal and + /// vertical values of the left-hand-side operand are bigger than or equal to + /// the horizontal and vertical values of the right-hand-side operand /// respectively. Returns false otherwise. /// /// This is a partial ordering. It is possible for two values to be neither