From f056ea4e70341486ce596a2911352abfa1e0a8b5 Mon Sep 17 00:00:00 2001 From: Jon Tippens Date: Tue, 2 Apr 2019 09:45:04 -0700 Subject: [PATCH] Fix minor typo (#30353) --- 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 92d7b8f8445..d728ceafc04 100644 --- a/packages/flutter/lib/src/widgets/editable_text.dart +++ b/packages/flutter/lib/src/widgets/editable_text.dart @@ -596,7 +596,7 @@ class EditableText extends StatefulWidget { /// Called when the user initiates a change to the TextField's /// value: when they have inserted or deleted text. /// - /// This callback does run not when the TextField's text is changed + /// This callback doesn't run when the TextField's text is changed /// programmatically, via the TextField's [controller]. Typically it /// isn't necessary to be notified of such changes, since they're /// initiated by the app itself.