From 92c21a5701cf324239e7fce79e299caf449ea4da Mon Sep 17 00:00:00 2001 From: Justin McCandless Date: Thu, 19 Dec 2019 09:40:01 -0800 Subject: [PATCH] Fix a typo in the docs (#47391) Just a docs text change. --- packages/flutter/lib/src/rendering/box.dart | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/packages/flutter/lib/src/rendering/box.dart b/packages/flutter/lib/src/rendering/box.dart index c9125ad6ed..82b7f6d0c5 100644 --- a/packages/flutter/lib/src/rendering/box.dart +++ b/packages/flutter/lib/src/rendering/box.dart @@ -1313,8 +1313,7 @@ abstract class RenderBox extends RenderObject { /// function couples the child with the parent so that when the child's layout /// changes, the parent is notified (via [markNeedsLayout]). /// - /// Calling this function is expensive and as it can result in O(N^2) - /// behavior. + /// Calling this function is expensive as it can result in O(N^2) behavior. /// /// Do not override this method. Instead, implement [computeMinIntrinsicWidth]. @mustCallSuper @@ -1453,8 +1452,7 @@ abstract class RenderBox extends RenderObject { /// function couples the child with the parent so that when the child's layout /// changes, the parent is notified (via [markNeedsLayout]). /// - /// Calling this function is expensive and as it can result in O(N^2) - /// behavior. + /// Calling this function is expensive as it can result in O(N^2) behavior. /// /// Do not override this method. Instead, implement /// [computeMaxIntrinsicWidth]. @@ -1533,8 +1531,7 @@ abstract class RenderBox extends RenderObject { /// function couples the child with the parent so that when the child's layout /// changes, the parent is notified (via [markNeedsLayout]). /// - /// Calling this function is expensive and as it can result in O(N^2) - /// behavior. + /// Calling this function is expensive as it can result in O(N^2) behavior. /// /// Do not override this method. Instead, implement /// [computeMinIntrinsicHeight]. @@ -1610,8 +1607,7 @@ abstract class RenderBox extends RenderObject { /// function couples the child with the parent so that when the child's layout /// changes, the parent is notified (via [markNeedsLayout]). /// - /// Calling this function is expensive and as it can result in O(N^2) - /// behavior. + /// Calling this function is expensive as it can result in O(N^2) behavior. /// /// Do not override this method. Instead, implement /// [computeMaxIntrinsicHeight].