Unverified Commit ce14fe02 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Add missing comma to fix build (#27274)

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