diff --git a/wp-includes/load.php b/wp-includes/load.php index 8d9161adc2..6bd7614ecd 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -1505,13 +1505,13 @@ function is_wp_error( $thing ) { if ( $is_wp_error ) { /** - * Fires when `is_wp_error()` is called and it's an instance of `WP_Error`. + * Fires when `is_wp_error()` is called and its parameter is an instance of `WP_Error`. * * @since 5.6.0 * * @param WP_Error $thing The error object passed to `is_wp_error()`. */ - do_action( 'wp_error_checked', $thing ); + do_action( 'is_wp_error_instance', $thing ); } return $is_wp_error; diff --git a/wp-includes/version.php b/wp-includes/version.php index 82e4cc14e5..1b13bc25b7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta4-49634'; +$wp_version = '5.6-beta4-49635'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.