Add missing comma to fix build (#27274)

This commit is contained in:
Michael Goderbauer 2019-01-29 22:33:27 -08:00 committed by GitHub
parent 3ed8ea2de9
commit ce14fe0230
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1556,7 +1556,7 @@ class Padding extends SingleChildRenderObjectWidget {
/// child: Container(
/// height: 100.0,
/// width: 100.0,
/// color: Colors.yellow
/// color: Colors.yellow,
/// child: Align(
/// alignment: FractionalOffset(0.2, 0.6),
/// child: Container(
@ -1566,8 +1566,7 @@ class Padding extends SingleChildRenderObjectWidget {
/// ),
/// ),
/// ),
/// );
///
/// )
/// ```
/// {@end-tool}
///