From 11c3c83c84bf5ed2de549646da8fe900bc40d33c Mon Sep 17 00:00:00 2001 From: Justin McCandless Date: Thu, 11 Mar 2021 09:15:03 -0800 Subject: [PATCH] Spelling standardization: implementer (#77861) --- packages/flutter/lib/src/services/text_input.dart | 2 +- packages/flutter/lib/src/widgets/text_selection.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/lib/src/services/text_input.dart b/packages/flutter/lib/src/services/text_input.dart index d9788cb684..43eac8f0cd 100644 --- a/packages/flutter/lib/src/services/text_input.dart +++ b/packages/flutter/lib/src/services/text_input.dart @@ -791,7 +791,7 @@ enum SelectionChangedCause { drag, } -/// An interface for manipulating the selection, to be used by the implementor +/// An interface for manipulating the selection, to be used by the implementer /// of the toolbar widget. abstract class TextSelectionDelegate { /// Gets the current text input. diff --git a/packages/flutter/lib/src/widgets/text_selection.dart b/packages/flutter/lib/src/widgets/text_selection.dart index c937631f0a..d4af98033e 100644 --- a/packages/flutter/lib/src/widgets/text_selection.dart +++ b/packages/flutter/lib/src/widgets/text_selection.dart @@ -106,7 +106,7 @@ class ToolbarItemsParentData extends ContainerBoxParentData { } /// An interface for building the selection UI, to be provided by the -/// implementor of the toolbar widget. +/// implementer of the toolbar widget. /// /// Override text operations such as [handleCut] if needed. abstract class TextSelectionControls {