From 10d20c77aa42402bf9b5db61b113f471e15d40ba Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Mon, 7 Nov 2016 14:05:29 -0800 Subject: [PATCH] Fix copypasta in Column docs (#6736) Fixes https://github.com/flutter/flutter/issues/6734 --- packages/flutter/lib/src/widgets/basic.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/flutter/lib/src/widgets/basic.dart b/packages/flutter/lib/src/widgets/basic.dart index 382732f8ef..9d7bb12968 100644 --- a/packages/flutter/lib/src/widgets/basic.dart +++ b/packages/flutter/lib/src/widgets/basic.dart @@ -2064,12 +2064,12 @@ class Row extends Flex { /// A widget that lays out its children in a vertical array. /// -/// Each child of a [Row] widget is either flexible or inflexible. The [Row] -/// first lays out its inflexible children and subtracts their total width to -/// determine how much free space is available. The [Row] then divides this free -/// space among the flexible children in a ratio determined by their -/// [Flexible.flex] properties. To control the flex of child widgets, see the -/// [Flexible] widget. +/// Each child of a [Column] widget is either flexible or inflexible. The +/// [Column] first lays out its inflexible children and subtracts their total +/// height to determine how much free space is available. The [Column] then +/// divides this free space among the flexible children in a ratio determined by +/// their [Flexible.flex] properties. To control the flex of child widgets, see +/// the [Flexible] widget. /// /// The [mainAxisAlignment] property determines how the remaining vertical free /// space (if any) is allocated after the flexible children are dealt with. The