From 89edac404184db1dc9a04b4bad615e28d946037b Mon Sep 17 00:00:00 2001 From: Jim Kalafut Date: Tue, 28 Nov 2023 10:01:07 -0800 Subject: [PATCH] Fix header formatting typo in PopupMenuButton docs (#139084) I believe this was intended (in #128351) to be a heading, but currently in the [published docs](https://api.flutter.dev/flutter/material/PopupMenuButton-class.html) it is rendered as: ``` /// ## Updating to MenuAnchor ``` --- packages/flutter/lib/src/material/popup_menu.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/material/popup_menu.dart b/packages/flutter/lib/src/material/popup_menu.dart index e891352ac6fd..3e9a3a176855 100644 --- a/packages/flutter/lib/src/material/popup_menu.dart +++ b/packages/flutter/lib/src/material/popup_menu.dart @@ -1047,7 +1047,7 @@ typedef PopupMenuItemBuilder = List> Function(BuildContext /// If both are null, then a standard overflow icon is created (depending on the /// platform). /// -/// /// ## Updating to [MenuAnchor] +/// ## Updating to [MenuAnchor] /// /// There is a Material 3 component, /// [MenuAnchor] that is preferred for applications that are configured