diff --git a/packages/flutter/lib/src/widgets/framework.dart b/packages/flutter/lib/src/widgets/framework.dart index 2a11de3887f..b142b6a1652 100644 --- a/packages/flutter/lib/src/widgets/framework.dart +++ b/packages/flutter/lib/src/widgets/framework.dart @@ -2039,9 +2039,11 @@ abstract class Element implements BuildContext { /// /// The following table summarises the above: /// - /// | | `newWidget == null` | `newWidget != null` | - /// | `child == null` | Returns null. | Returns new [Element]. | - /// | `child != null` | Old child is removed, returns null. | Old child updated if possible, returns child or new [Element]. | + ///
| `newWidget == null` | `newWidget != null` + /// | |
|---|---|---|
| `child == null` | Returns null. | Returns new [Element]. + /// |
| `child != null` | Old child is removed, returns null. | Old child updated if possible, returns child or new [Element]. + /// |