From 50fa352cbbfe1655527dd0f86f2bc5daac2159ef Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 15 Oct 2020 00:14:51 +0000 Subject: [PATCH] Docs: Improve description of the `$email` parameter in `email_exists()`. Follow-up to [49148]. Props garrett-eclipse. See #51379. git-svn-id: https://develop.svn.wordpress.org/trunk@49153 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/user.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/user.php b/src/wp-includes/user.php index 1e01dd9751..07119b2d7c 100644 --- a/src/wp-includes/user.php +++ b/src/wp-includes/user.php @@ -1604,7 +1604,7 @@ function username_exists( $username ) { * * @param int|false $user_id The user ID associated with the username, * or false if the username does not exist. - * @param string $username Username to check. + * @param string $username The username to check for existence. */ return apply_filters( 'username_exists', $user_id, $username ); } @@ -1618,7 +1618,7 @@ function username_exists( $username ) { * * @since 2.1.0 * - * @param string $email Email. + * @param string $email The email to check for existence. * @return int|false The user ID on success, false on failure. */ function email_exists( $email ) { @@ -1636,7 +1636,7 @@ function email_exists( $email ) { * * @param int|false $user_id The user ID associated with the email, * or false if the email does not exist. - * @param string $email Email. + * @param string $email The email to check for existence. */ return apply_filters( 'email_exists', $user_id, $email ); }