diff options
author | John Blackbourn <johnbillion@git.wordpress.org> | 2021-01-03 22:02:13 +0000 |
---|---|---|
committer | John Blackbourn <johnbillion@git.wordpress.org> | 2021-01-03 22:02:13 +0000 |
commit | 679ccc35e63e62a90c768afcc16f46bd154dfb65 (patch) | |
tree | d1f8aecbddc39afc3fd960d1cae3860093a126cb /src/wp-admin/includes/privacy-tools.php | |
parent | 374b41ed13a5cf26739287a2c3fee15b14d4cfc5 (diff) | |
download | wordpress-679ccc35e63e62a90c768afcc16f46bd154dfb65.tar.gz wordpress-679ccc35e63e62a90c768afcc16f46bd154dfb65.zip |
Docs: Promote many `bool` types to `true` or `false` where only that value is used.
See #51800
git-svn-id: https://develop.svn.wordpress.org/trunk@49927 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'src/wp-admin/includes/privacy-tools.php')
-rw-r--r-- | src/wp-admin/includes/privacy-tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wp-admin/includes/privacy-tools.php b/src/wp-admin/includes/privacy-tools.php index 14914dcb9c..4df1fb3343 100644 --- a/src/wp-admin/includes/privacy-tools.php +++ b/src/wp-admin/includes/privacy-tools.php @@ -13,7 +13,7 @@ * @access private * * @param int $request_id Request ID. - * @return bool|WP_Error Returns true if sending the email was successful, or a WP_Error object. + * @return true|WP_Error Returns true if sending the email was successful, or a WP_Error object. */ function _wp_privacy_resend_request( $request_id ) { $request_id = absint( $request_id ); |