Skip to content

Commit da66a45

Browse files
authored
fixup! Update grammar in basic.dart flutter#56251 (flutter#56407)
1 parent 631cd4d commit da66a45

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -3782,7 +3782,7 @@ class PositionedDirectional extends StatelessWidget {
37823782
/// * [Column], for a version of this widget that is always vertical.
37833783
/// * [Expanded], to indicate children that should take all the remaining room.
37843784
/// * [Flexible], to indicate children that should share the remaining room.
3785-
/// * [Spacer], a widget that takes up space proportional to it's flex value.
3785+
/// * [Spacer], a widget that takes up space proportional to its flex value.
37863786
/// that may be sized smaller (leaving some remaining room unused).
37873787
/// * The [catalog of layout widgets](https://flutter.dev/widgets/layout/).
37883788
class Flex extends MultiChildRenderObjectWidget {
@@ -4122,7 +4122,7 @@ class Flex extends MultiChildRenderObjectWidget {
41224122
/// * [Expanded], to indicate children that should take all the remaining room.
41234123
/// * [Flexible], to indicate children that should share the remaining room but
41244124
/// that may by sized smaller (leaving some remaining room unused).
4125-
/// * [Spacer], a widget that takes up space proportional to it's flex value.
4125+
/// * [Spacer], a widget that takes up space proportional to its flex value.
41264126
/// * The [catalog of layout widgets](https://flutter.dev/widgets/layout/).
41274127
class Row extends Flex {
41284128
/// Creates a horizontal array of children.
@@ -4324,7 +4324,7 @@ class Row extends Flex {
43244324
/// that may size smaller (leaving some remaining room unused).
43254325
/// * [SingleChildScrollView], whose documentation discusses some ways to
43264326
/// use a [Column] inside a scrolling container.
4327-
/// * [Spacer], a widget that takes up space proportional to it's flex value.
4327+
/// * [Spacer], a widget that takes up space proportional to its flex value.
43284328
/// * The [catalog of layout widgets](https://flutter.dev/widgets/layout/).
43294329
class Column extends Flex {
43304330
/// Creates a vertical array of children.
@@ -4457,7 +4457,7 @@ class Flexible extends ParentDataWidget<FlexParentData> {
44574457
///
44584458
/// {@tool dartpad --template=stateless_widget_material}
44594459
/// This example shows how to use an [Expanded] widget in a [Column] so that
4460-
/// it's middle child, a [Container] here, expands to fill the space.
4460+
/// its middle child, a [Container] here, expands to fill the space.
44614461
///
44624462
/// ![This results in two thin blue boxes with a larger amber box in between.](https://flutter.github.io/assets-for-api-docs/assets/widgets/expanded_column.png)
44634463
///
@@ -4539,7 +4539,7 @@ class Flexible extends ParentDataWidget<FlexParentData> {
45394539
/// See also:
45404540
///
45414541
/// * [Flexible], which does not force the child to fill the available space.
4542-
/// * [Spacer], a widget that takes up space proportional to it's flex value.
4542+
/// * [Spacer], a widget that takes up space proportional to its flex value.
45434543
/// * The [catalog of layout widgets](https://flutter.dev/widgets/layout/).
45444544
class Expanded extends Flexible {
45454545
/// Creates a widget that expands a child of a [Row], [Column], or [Flex]

0 commit comments

Comments
 (0)