From de56c6ad725d58e98772e37125c8762ec2f643c3 Mon Sep 17 00:00:00 2001 From: Chulwoo Park Date: Mon, 23 Nov 2020 05:28:06 +0900 Subject: [PATCH] Remove unnecessary argument from Row and Column constructor comments (#71041) --- packages/flutter/lib/src/widgets/basic.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/flutter/lib/src/widgets/basic.dart b/packages/flutter/lib/src/widgets/basic.dart index f41e05d13e..729caeefbb 100644 --- a/packages/flutter/lib/src/widgets/basic.dart +++ b/packages/flutter/lib/src/widgets/basic.dart @@ -4481,8 +4481,8 @@ class Flex extends MultiChildRenderObjectWidget { class Row extends Flex { /// Creates a horizontal array of children. /// - /// The [direction], [mainAxisAlignment], [mainAxisSize], - /// [crossAxisAlignment], and [verticalDirection] arguments must not be null. + /// The [mainAxisAlignment], [mainAxisSize], [crossAxisAlignment], and + /// [verticalDirection] arguments must not be null. /// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then /// [textBaseline] must not be null. /// @@ -4683,8 +4683,8 @@ class Row extends Flex { class Column extends Flex { /// Creates a vertical array of children. /// - /// The [direction], [mainAxisAlignment], [mainAxisSize], - /// [crossAxisAlignment], and [verticalDirection] arguments must not be null. + /// The [mainAxisAlignment], [mainAxisSize], [crossAxisAlignment], and + /// [verticalDirection] arguments must not be null. /// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then /// [textBaseline] must not be null. ///