From 5faac99d928d16dc30b335f8e802b7e19752f26d Mon Sep 17 00:00:00 2001 From: Mikkel Nygaard Ravn Date: Wed, 4 Jul 2018 14:03:01 +0200 Subject: [PATCH] Fix typos (#19073) --- packages/flutter/lib/src/painting/edge_insets.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/lib/src/painting/edge_insets.dart b/packages/flutter/lib/src/painting/edge_insets.dart index edaf5f44478..1bb6b12fdf2 100644 --- a/packages/flutter/lib/src/painting/edge_insets.dart +++ b/packages/flutter/lib/src/painting/edge_insets.dart @@ -75,7 +75,7 @@ abstract class EdgeInsetsGeometry { /// /// * [EdgeInsets.inflateRect], to inflate a [Rect] rather than a [Size] (for /// [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. Size inflateSize(Size size) { return new Size(size.width + horizontal, size.height + vertical); @@ -91,7 +91,7 @@ abstract class EdgeInsetsGeometry { /// /// * [EdgeInsets.deflateRect], to deflate a [Rect] rather than a [Size]. (for /// [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. Size deflateSize(Size size) { return new Size(size.width - horizontal, size.height - vertical);