From e7ffac2d67203ff3e57a01f762fb5374955d14cd Mon Sep 17 00:00:00 2001 From: Justin McCandless Date: Mon, 14 Oct 2019 08:45:57 -0700 Subject: [PATCH] Fix typo in docs: EdgeInserts->EdgeInsets (#42445) --- packages/flutter/lib/src/widgets/editable_text.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/widgets/editable_text.dart b/packages/flutter/lib/src/widgets/editable_text.dart index d42b5f271b8..adc07789f0e 100644 --- a/packages/flutter/lib/src/widgets/editable_text.dart +++ b/packages/flutter/lib/src/widgets/editable_text.dart @@ -977,7 +977,7 @@ class EditableText extends StatefulWidget { /// then it will attempt to make itself visible by scrolling a surrounding [Scrollable], if one is present. /// This value controls how far from the edges of a [Scrollable] the TextField will be positioned after the scroll. /// - /// Defaults to EdgeInserts.all(20.0). + /// Defaults to EdgeInsets.all(20.0). /// {@endtemplate} final EdgeInsets scrollPadding;