Unverified Commit 92c21a57 authored by Justin McCandless's avatar Justin McCandless Committed by GitHub

Fix a typo in the docs (#47391)

Just a docs text change.
parent 78db9656
...@@ -1313,8 +1313,7 @@ abstract class RenderBox extends RenderObject { ...@@ -1313,8 +1313,7 @@ abstract class RenderBox extends RenderObject {
/// function couples the child with the parent so that when the child's layout /// function couples the child with the parent so that when the child's layout
/// changes, the parent is notified (via [markNeedsLayout]). /// changes, the parent is notified (via [markNeedsLayout]).
/// ///
/// Calling this function is expensive and as it can result in O(N^2) /// Calling this function is expensive as it can result in O(N^2) behavior.
/// behavior.
/// ///
/// Do not override this method. Instead, implement [computeMinIntrinsicWidth]. /// Do not override this method. Instead, implement [computeMinIntrinsicWidth].
@mustCallSuper @mustCallSuper
...@@ -1453,8 +1452,7 @@ abstract class RenderBox extends RenderObject { ...@@ -1453,8 +1452,7 @@ abstract class RenderBox extends RenderObject {
/// function couples the child with the parent so that when the child's layout /// function couples the child with the parent so that when the child's layout
/// changes, the parent is notified (via [markNeedsLayout]). /// changes, the parent is notified (via [markNeedsLayout]).
/// ///
/// Calling this function is expensive and as it can result in O(N^2) /// Calling this function is expensive as it can result in O(N^2) behavior.
/// behavior.
/// ///
/// Do not override this method. Instead, implement /// Do not override this method. Instead, implement
/// [computeMaxIntrinsicWidth]. /// [computeMaxIntrinsicWidth].
...@@ -1533,8 +1531,7 @@ abstract class RenderBox extends RenderObject { ...@@ -1533,8 +1531,7 @@ abstract class RenderBox extends RenderObject {
/// function couples the child with the parent so that when the child's layout /// function couples the child with the parent so that when the child's layout
/// changes, the parent is notified (via [markNeedsLayout]). /// changes, the parent is notified (via [markNeedsLayout]).
/// ///
/// Calling this function is expensive and as it can result in O(N^2) /// Calling this function is expensive as it can result in O(N^2) behavior.
/// behavior.
/// ///
/// Do not override this method. Instead, implement /// Do not override this method. Instead, implement
/// [computeMinIntrinsicHeight]. /// [computeMinIntrinsicHeight].
...@@ -1610,8 +1607,7 @@ abstract class RenderBox extends RenderObject { ...@@ -1610,8 +1607,7 @@ abstract class RenderBox extends RenderObject {
/// function couples the child with the parent so that when the child's layout /// function couples the child with the parent so that when the child's layout
/// changes, the parent is notified (via [markNeedsLayout]). /// changes, the parent is notified (via [markNeedsLayout]).
/// ///
/// Calling this function is expensive and as it can result in O(N^2) /// Calling this function is expensive as it can result in O(N^2) behavior.
/// behavior.
/// ///
/// Do not override this method. Instead, implement /// Do not override this method. Instead, implement
/// [computeMaxIntrinsicHeight]. /// [computeMaxIntrinsicHeight].
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment