From 770e17cf9fd6a7576ee71a0b8be2c8eb3e22d62b Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Thu, 28 Apr 2016 21:35:39 -0700 Subject: [PATCH] Fix truncated dartdoc. (#3619) Note that the /// part of the doc was published, only the // line was omitted. This means that we can safely put // comments between /// docs and the member they are documenting. --- packages/flutter/lib/src/widgets/scrollable_list.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/widgets/scrollable_list.dart b/packages/flutter/lib/src/widgets/scrollable_list.dart index 94121ab2bc..4ef565d4fc 100644 --- a/packages/flutter/lib/src/widgets/scrollable_list.dart +++ b/packages/flutter/lib/src/widgets/scrollable_list.dart @@ -317,7 +317,7 @@ class ListViewport extends _VirtualListViewport with VirtualViewportFromIterable /// the same size (extent) in the scrollDirection. For example for /// ScrollDirection.vertical itemExtent is the height of each item. Use this /// widget when you have a large number of children or when you are concerned -// about offscreen widgets consuming resources. +/// about offscreen widgets consuming resources. class ScrollableLazyList extends Scrollable { ScrollableLazyList({ Key key,