Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sky/engine/core/dart/painting.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions sky/engine/core/painting/OffsetBase.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down