Commit 92b4db5ebe for wordpress.org

commit 92b4db5ebef3ad290391bdf606a9723756d58a50
Author: swissspidy <swissspidy@git.wordpress.org>
Date:   Tue Sep 15 09:27:54 2026 +0000

    Docs: Remove empty space between docblocks and function declarations.

    See #65860.
    Built from https://develop.svn.wordpress.org/trunk@63619


    git-svn-id: http://core.svn.wordpress.org/trunk@62795 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/block-supports/typography.php b/wp-includes/block-supports/typography.php
index 3e920f6b3d..8e80d0e60b 100644
--- a/wp-includes/block-supports/typography.php
+++ b/wp-includes/block-supports/typography.php
@@ -561,8 +561,6 @@ function wp_get_computed_fluid_typography_value( $args = array() ) {
  *                             Default is false.
  * @return string|null Font-size value or null if a size is not passed in $preset.
  */
-
-
 function wp_get_typography_font_size_value( $preset, $settings = array() ) {
 	if ( ! isset( $preset['size'] ) ) {
 		return null;
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 0a3a6358af..31473ff17c 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63618';
+$wp_version = '7.2-alpha-63619';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php
index 7661e6d3f4..2acfdd8c07 100644
--- a/wp-includes/widgets.php
+++ b/wp-includes/widgets.php
@@ -636,7 +636,6 @@ function _register_widget_update_callback( $id_base, $update_callback, $options
  *                                  Default empty array.
  * @param mixed      ...$params     Optional additional parameters to pass to the callback function when it's called.
  */
-
 function _register_widget_form_callback( $id, $name, $form_callback, $options = array(), ...$params ) {
 	global $wp_registered_widget_controls;