Commit f9f9ffb0e1 for wordpress.org

commit f9f9ffb0e12002b67c4941ddcf8337e499d0f74a
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Thu Nov 27 23:14:24 2025 +0000

    Twenty Eleven: Add missing variable names to some `@param` tags.

    Follow-up to [25625].

    Props huzaifaalmesbah.
    See #64224.
    Built from https://develop.svn.wordpress.org/trunk@61315


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

diff --git a/wp-content/themes/twentyeleven/category.php b/wp-content/themes/twentyeleven/category.php
index e9bc2e7052..7e47355859 100644
--- a/wp-content/themes/twentyeleven/category.php
+++ b/wp-content/themes/twentyeleven/category.php
@@ -30,7 +30,7 @@ get_header(); ?>
 						 *
 						 * @since Twenty Eleven 1.0
 						 *
-						 * @param string The default category description HTML.
+						 * @param string $html The default category description HTML.
 						 */
 						echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' );
 					}
diff --git a/wp-content/themes/twentyeleven/functions.php b/wp-content/themes/twentyeleven/functions.php
index c52da6e1f1..cc7821aa8f 100644
--- a/wp-content/themes/twentyeleven/functions.php
+++ b/wp-content/themes/twentyeleven/functions.php
@@ -188,7 +188,7 @@ if ( ! function_exists( 'twentyeleven_setup' ) ) :
 			 *
 			 * @since Twenty Eleven 1.0
 			 *
-			 * @param int The default header image width in pixels. Default 1000.
+			 * @param int $width The default header image width in pixels. Default 1000.
 			 */
 			'width'                  => apply_filters( 'twentyeleven_header_image_width', 1000 ),
 			/**
@@ -196,7 +196,7 @@ if ( ! function_exists( 'twentyeleven_setup' ) ) :
 			 *
 			 * @since Twenty Eleven 1.0
 			 *
-			 * @param int The default header image height in pixels. Default 288.
+			 * @param int $height The default header image height in pixels. Default 288.
 			 */
 			'height'                 => apply_filters( 'twentyeleven_header_image_height', 288 ),
 			// Support flexible heights.
diff --git a/wp-includes/version.php b/wp-includes/version.php
index e45d5147ea..92c0aa1ec2 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61314';
+$wp_version = '7.0-alpha-61315';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.