Commit 1949f124 authored by Ian Hickson's avatar Ian Hickson

Merge pull request #2870 from Hixie/typos

Fix minor typos (EdgeInsets, ImageResource)
parents e1b112ff 24f93f73
...@@ -19,10 +19,12 @@ class EdgeInsets { ...@@ -19,10 +19,12 @@ class EdgeInsets {
: top = value, right = value, bottom = value, left = value; : top = value, right = value, bottom = value, left = value;
/// Constructs insets with only the given values non-zero. /// Constructs insets with only the given values non-zero.
const EdgeInsets.only({ this.top: 0.0, const EdgeInsets.only({
this.right: 0.0, this.top: 0.0,
this.bottom: 0.0, this.right: 0.0,
this.left: 0.0 }); this.bottom: 0.0,
this.left: 0.0
});
/// Constructs insets with symmetrical vertical and horizontal offsets. /// Constructs insets with symmetrical vertical and horizontal offsets.
const EdgeInsets.symmetric({ double vertical: 0.0, const EdgeInsets.symmetric({ double vertical: 0.0,
......
...@@ -73,7 +73,7 @@ class ImageResource { ...@@ -73,7 +73,7 @@ class ImageResource {
/// The first concrete [ImageInfo] object represented by this handle. /// 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. /// [addListener] to be notified whenever a a concrete image is available.
Future<ImageInfo> get first => _futureImage; Future<ImageInfo> get first => _futureImage;
......
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