From 22d27038344f9265f34bd7ea38803cddcb89bbb4 Mon Sep 17 00:00:00 2001 From: Jake Date: Thu, 15 Feb 2024 16:46:30 -0600 Subject: [PATCH] Fix minor spelling error (#143541) *Replace this paragraph with a description of what this PR is changing or adding, and why. Consider including before/after screenshots.* *List which issues are fixed by this PR. You must list at least one issue. An issue is not required if the PR fixes something trivial like a typo.* *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* --- packages/flutter/lib/src/rendering/box.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/rendering/box.dart b/packages/flutter/lib/src/rendering/box.dart index f01a45e621e..3ac00d990fe 100644 --- a/packages/flutter/lib/src/rendering/box.dart +++ b/packages/flutter/lib/src/rendering/box.dart @@ -1989,7 +1989,7 @@ abstract class RenderBox extends RenderObject { 'RenderBox.size accessed beyond the scope of resize, layout, or ' 'permitted parent access. RenderBox can always access its own size, ' 'otherwise, the only object that is allowed to read RenderBox.size ' - 'is its parent, if they have said they will. It you hit this assert ' + 'is its parent, if they have said they will. If you hit this assert ' 'trying to access a child\'s size, pass "parentUsesSize: true" to ' "that child's layout().", );