diff --git a/packages/flutter/lib/src/painting/edge_insets.dart b/packages/flutter/lib/src/painting/edge_insets.dart index b3c914cf87..3d9dcca8d5 100644 --- a/packages/flutter/lib/src/painting/edge_insets.dart +++ b/packages/flutter/lib/src/painting/edge_insets.dart @@ -19,10 +19,12 @@ class EdgeInsets { : top = value, right = value, bottom = value, left = value; /// Constructs insets with only the given values non-zero. - const EdgeInsets.only({ this.top: 0.0, - this.right: 0.0, - this.bottom: 0.0, - this.left: 0.0 }); + const EdgeInsets.only({ + this.top: 0.0, + this.right: 0.0, + this.bottom: 0.0, + this.left: 0.0 + }); /// Constructs insets with symmetrical vertical and horizontal offsets. const EdgeInsets.symmetric({ double vertical: 0.0, diff --git a/packages/flutter/lib/src/services/image_resource.dart b/packages/flutter/lib/src/services/image_resource.dart index 1d21a36f5e..cb11644e8e 100644 --- a/packages/flutter/lib/src/services/image_resource.dart +++ b/packages/flutter/lib/src/services/image_resource.dart @@ -73,7 +73,7 @@ class ImageResource { /// The first concrete [ImageInfo] object represented by this handle. /// - /// Instead of receivingly only the first image, most clients will want to + /// Instead of receiving only the first image, most clients will want to /// [addListener] to be notified whenever a a concrete image is available. Future get first => _futureImage;