Skip to content

Commit 01b8854

Browse files
authored
Fix. typos (#137479)
## Description This PR fixes typos in - `editable_text_show_on_screen_test.dart` - `form_test.dart` - `framework.dart`
1 parent c617937 commit 01b8854

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/flutter/lib/src/widgets/framework.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ const String _flutterWidgetsLibrary = 'package:flutter/widgets.dart';
872872
/// objects should override [didUpdateWidget] to respond to changes in their
873873
/// associated widget (e.g., to start implicit animations). The framework
874874
/// always calls [build] after calling [didUpdateWidget], which means any
875-
/// calls to [setState] in [didUpdateWidget] are redundant. (See alse the
875+
/// calls to [setState] in [didUpdateWidget] are redundant. (See also the
876876
/// discussion at [Element.rebuild].)
877877
/// * During development, if a hot reload occurs (whether initiated from the
878878
/// command line `flutter` tool by pressing `r`, or from an IDE), the

packages/flutter/test/widgets/editable_text_show_on_screen_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ void main() {
366366
expect(render.size.height, greaterThan(500.0));
367367
expect(scrollController.offset, 0.0);
368368

369-
// Change selection to non-collapased so that cursor isn't shown
369+
// Change selection to non-collapsed so that cursor isn't shown
370370
// and the location requires a bit of scroll.
371371
tester.testTextInput.updateEditingValue(TextEditingValue(
372372
text: text,

packages/flutter/test/widgets/form_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void main() {
7878

7979
Future<void> checkText(String testValue) async {
8080
await tester.enterText(find.byType(TextField), testValue);
81-
// pump'ing is unnecessary because callback happens regardless of frames
81+
// Pumping is unnecessary because callback happens regardless of frames.
8282
expect(fieldValue, equals(testValue));
8383
}
8484

0 commit comments

Comments
 (0)