Unverified Commit 5faac99d authored by Mikkel Nygaard Ravn's avatar Mikkel Nygaard Ravn Committed by GitHub

Fix typos (#19073)

parent 9b3f50b7
...@@ -75,7 +75,7 @@ abstract class EdgeInsetsGeometry { ...@@ -75,7 +75,7 @@ abstract class EdgeInsetsGeometry {
/// ///
/// * [EdgeInsets.inflateRect], to inflate a [Rect] rather than a [Size] (for /// * [EdgeInsets.inflateRect], to inflate a [Rect] rather than a [Size] (for
/// [EdgeInsetsDirectional], requires first calling [resolve] to establish /// [EdgeInsetsDirectional], requires first calling [resolve] to establish
/// how the start and and map to the left or right). /// how the start and end map to the left or right).
/// * [deflateSize], to deflate a [Size] rather than inflating it. /// * [deflateSize], to deflate a [Size] rather than inflating it.
Size inflateSize(Size size) { Size inflateSize(Size size) {
return new Size(size.width + horizontal, size.height + vertical); return new Size(size.width + horizontal, size.height + vertical);
...@@ -91,7 +91,7 @@ abstract class EdgeInsetsGeometry { ...@@ -91,7 +91,7 @@ abstract class EdgeInsetsGeometry {
/// ///
/// * [EdgeInsets.deflateRect], to deflate a [Rect] rather than a [Size]. (for /// * [EdgeInsets.deflateRect], to deflate a [Rect] rather than a [Size]. (for
/// [EdgeInsetsDirectional], requires first calling [resolve] to establish /// [EdgeInsetsDirectional], requires first calling [resolve] to establish
/// how the start and and map to the left or right). /// how the start and end map to the left or right).
/// * [inflateSize], to inflate a [Size] rather than deflating it. /// * [inflateSize], to inflate a [Size] rather than deflating it.
Size deflateSize(Size size) { Size deflateSize(Size size) {
return new Size(size.width - horizontal, size.height - vertical); return new Size(size.width - horizontal, size.height - vertical);
......
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