From 988a2ab8fdccfb2e887cdcd26f515e8f85b46a69 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 6 Aug 2025 17:00:32 +0000 Subject: [PATCH] Twenty Twenty-Four: Use third-person singular verbs for function descriptions. Reference: [https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#documenting-tips PHP Documentation Standards: Documenting Tips]. Props vladimiraus, mukesh27, SergeyBiryukov. See #63692. Built from https://develop.svn.wordpress.org/trunk@60610 git-svn-id: http://core.svn.wordpress.org/trunk@59946 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwentyfour/functions.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/twentytwentyfour/functions.php b/wp-content/themes/twentytwentyfour/functions.php index 8536cb8423..6d22c85711 100644 --- a/wp-content/themes/twentytwentyfour/functions.php +++ b/wp-content/themes/twentytwentyfour/functions.php @@ -14,7 +14,7 @@ if ( ! function_exists( 'twentytwentyfour_block_styles' ) ) : /** - * Register custom block styles + * Registers custom block styles. * * @since Twenty Twenty-Four 1.0 * @return void @@ -152,7 +152,7 @@ add_action( 'init', 'twentytwentyfour_block_styles' ); if ( ! function_exists( 'twentytwentyfour_block_stylesheets' ) ) : /** - * Enqueue custom block stylesheets + * Enqueues custom block stylesheets. * * @since Twenty Twenty-Four 1.0 * @return void @@ -186,7 +186,7 @@ add_action( 'init', 'twentytwentyfour_block_stylesheets' ); if ( ! function_exists( 'twentytwentyfour_pattern_categories' ) ) : /** - * Register pattern categories + * Registers pattern categories. * * @since Twenty Twenty-Four 1.0 * @return void diff --git a/wp-includes/version.php b/wp-includes/version.php index 08fc1f9f3d..f017b3b595 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60609'; +$wp_version = '6.9-alpha-60610'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.