Skip to content

Commit 743fcf7

Browse files
authored
[Docs] Fix Typos (#124249)
[Docs] Fix Typos
1 parent a086c64 commit 743fcf7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/flutter/lib/src/material/action_buttons.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class DrawerButtonIcon extends StatelessWidget {
323323
/// A [DrawerButton] is an [IconButton] with a "drawer" icon. When pressed, the
324324
/// close button calls [ScaffoldState.openDrawer] to the [Scaffold.drawer].
325325
///
326-
/// The default behaviour on press can be overriden with [onPressed].
326+
/// The default behaviour on press can be overridden with [onPressed].
327327
///
328328
/// See also:
329329
///
@@ -388,7 +388,7 @@ class EndDrawerButtonIcon extends StatelessWidget {
388388
/// A [EndDrawerButton] is an [IconButton] with a "drawer" icon. When pressed, the
389389
/// end drawer button calls [ScaffoldState.openEndDrawer] to open the [Scaffold.endDrawer].
390390
///
391-
/// The default behaviour on press can be overriden with [onPressed].
391+
/// The default behaviour on press can be overridden with [onPressed].
392392
///
393393
/// See also:
394394
///

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4763,7 +4763,7 @@ abstract class Element extends DiagnosticableTree implements BuildContext {
47634763
/// cheaper. (Additionally, if _any_ subclass of [Widget] used in an
47644764
/// application implements `operator ==`, then the compiler cannot inline the
47654765
/// comparison anywhere, because it has to treat the call as virtual just in
4766-
/// case the instance happens to be one that has an overriden operator.)
4766+
/// case the instance happens to be one that has an overridden operator.)
47674767
///
47684768
/// Instead, the best way to avoid unnecessary rebuilds is to cache the
47694769
/// widgets that are returned from [State.build], so that each frame the same

packages/flutter/test/widgets/editable_text_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12997,7 +12997,7 @@ testWidgets('Floating cursor ending with selection', (WidgetTester tester) async
1299712997
await sendUndo(tester);
1299812998
expect(controller.value, composingStep2);
1299912999

13000-
// Waiting for the throttling beetween undos should have no effect.
13000+
// Waiting for the throttling between undos should have no effect.
1300113001
await tester.pump(const Duration(milliseconds: 500));
1300213002

1300313003
// Undo second insertion.

0 commit comments

Comments
 (0)