@@ -871,27 +871,27 @@ class _TextSelectionHandleOverlayState
871871
872872/// Delegate interface for the [TextSelectionGestureDetectorBuilder] .
873873///
874- /// The interface is usually implemented by textfield implementations wrapping
874+ /// The interface is usually implemented by text field implementations wrapping
875875/// [EditableText] , that use a [TextSelectionGestureDetectorBuilder] to build a
876876/// [TextSelectionGestureDetector] for their [EditableText] . The delegate provides
877- /// the builder with information about the current state of the textfield .
877+ /// the builder with information about the current state of the text field .
878878/// Based on these information, the builder adds the correct gesture handlers
879879/// to the gesture detector.
880880///
881881/// See also:
882882///
883- /// * [TextField] , which implements this delegate for the Material textfield .
883+ /// * [TextField] , which implements this delegate for the Material text field .
884884/// * [CupertinoTextField] , which implements this delegate for the Cupertino
885- /// textfield .
885+ /// text field .
886886abstract class TextSelectionGestureDetectorBuilderDelegate {
887887 /// [GlobalKey] to the [EditableText] for which the
888888 /// [TextSelectionGestureDetectorBuilder] will build a [TextSelectionGestureDetector] .
889889 GlobalKey <EditableTextState > get editableTextKey;
890890
891- /// Whether the textfield should respond to force presses.
891+ /// Whether the text field should respond to force presses.
892892 bool get forcePressEnabled;
893893
894- /// Whether the user may select text in the textfield .
894+ /// Whether the user may select text in the text field .
895895 bool get selectionEnabled;
896896}
897897
@@ -924,7 +924,7 @@ class TextSelectionGestureDetectorBuilder {
924924 /// The delegate for this [TextSelectionGestureDetectorBuilder] .
925925 ///
926926 /// The delegate provides the builder with information about what actions can
927- /// currently be performed on the textfield . Based on this, the builder adds
927+ /// currently be performed on the text field . Based on this, the builder adds
928928 /// the correct gesture handlers to the gesture detector.
929929 @protected
930930 final TextSelectionGestureDetectorBuilderDelegate delegate;
0 commit comments