diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php
index d46a410..7cf7365 100644
--- a/src/wp-includes/pluggable.php
+++ b/src/wp-includes/pluggable.php
@@ -1331,7 +1331,7 @@ if ( ! function_exists( 'wp_safe_redirect' ) ) :
 	 *     }
 	 *
 	 * @since 2.3.0
-	 * @since 5.0.0 The return value from wp_redirect() is now passed on, and the `$x_redirect_by` parameter was added.
+	 * @since 5.0.3 Added passing the return from wp_redirect on.
 	 *
 	 * @param string $location      The path or URL to redirect to.
 	 * @param int    $status        Optional. HTTP response status code to use. Default '302' (Moved Temporarily).
@@ -1350,6 +1350,7 @@ if ( ! function_exists( 'wp_safe_redirect' ) ) :
 		 *
 		 * @param string $fallback_url The fallback URL to use by default.
 		 * @param int    $status       The HTTP response status code to use.
+		 * @return bool  $redirect False if the redirect was cancelled, true otherwise.
 		 */
 		$location = wp_validate_redirect( $location, apply_filters( 'wp_safe_redirect_fallback', admin_url(), $status ) );
 
