From 0dcc9fd03a7314d8388acc542d812915be9f7696 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Wed, 19 Jan 2022 12:42:01 +0000 Subject: [PATCH] Docs: Docblocks consistency fixes after [52604]. Follow-up to [52604]. Fixes #54690. Built from https://develop.svn.wordpress.org/trunk@52605 git-svn-id: http://core.svn.wordpress.org/trunk@52193 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index f23cb46d82..3fea54c7bf 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -2939,11 +2939,11 @@ function retrieve_password( $user_login = null ) { } /** - * Filter whether to send the retrieve password email. + * Filters whether to send the retrieve password email. * * @since 6.0.0 * - * @param bool $send False to prevent sending. Default: true + * @param bool $send False to prevent sending. Default true. */ if ( ! apply_filters( 'send_retrieve_password_email', true ) ) { return true; @@ -3039,7 +3039,7 @@ function retrieve_password( $user_login = null ) { $data = compact( 'key', 'user_login', 'user_data' ); /** - * Filter the contents of the reset password notification email sent to the user. + * Filters the contents of the reset password notification email sent to the user. * * @since 6.0.0 * diff --git a/wp-includes/version.php b/wp-includes/version.php index 6244222fe1..2bf4fdf3ec 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52604'; +$wp_version = '6.0-alpha-52605'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.