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.