From 9176f7b6fc7956a5251be2bb8f2efbf5f4b616bf Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 22 Feb 2024 11:08:31 -0800 Subject: [PATCH] Fix documentation typo in basic.dart (#143887) Fixes a small documentation typo. --- packages/flutter/lib/src/widgets/basic.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/widgets/basic.dart b/packages/flutter/lib/src/widgets/basic.dart index 6b35233027e..8e9067d89a3 100644 --- a/packages/flutter/lib/src/widgets/basic.dart +++ b/packages/flutter/lib/src/widgets/basic.dart @@ -5203,7 +5203,7 @@ class Flexible extends ParentDataWidget { /// The flex factor to use for this child. /// /// If null or zero, the child is inflexible and determines its own size. If - /// non-zero, the amount of space the child's can occupy in the main axis is + /// non-zero, the amount of space the child can occupy in the main axis is /// determined by dividing the free space (after placing the inflexible /// children) according to the flex factors of the flexible children. final int flex;