From 7630eab57fa6557de47d2a80ab333a8620d7ea8a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 13 Sep 2023 08:08:20 +0000 Subject: [PATCH] Docs: Fix typo in a comment in `wp_trim_excerpt()`. Includes removing redundant `@covers` tags. There is already an existing annotation for the whole test class, following the [https://docs.phpunit.de/en/9.6/annotations.html#covers PHPUnit recommendation]: > This annotation can be added to the docblock of the test class or the individual test methods. The recommended way is to add the annotation to the docblock of the test class, not to the docblock of the test methods. Follow-up to [56560]. See #58682. Built from https://develop.svn.wordpress.org/trunk@56561 git-svn-id: http://core.svn.wordpress.org/trunk@56073 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 0e5797fa7e..73d95df2af 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -3984,7 +3984,7 @@ function wp_trim_excerpt( $text = '', $post = null ) { /* * Temporarily unhook do_blocks() since excerpt_remove_blocks( $text ) - * handels block rendering needed for excerpt. + * handles block rendering needed for excerpt. */ $filter_block_removed = remove_filter( 'the_content', 'do_blocks', 9 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index ccbb89a59a..6791cabc5b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56560'; +$wp_version = '6.4-alpha-56561'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.