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
This commit is contained in:
Sergey Biryukov
2025-08-06 17:00:32 +00:00
parent b4e1bf55cc
commit 988a2ab8fd
2 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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.