From 6a8f9bf499120c46315cce34b98c548dacf4d142 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 16 Nov 2020 16:48:12 +0000 Subject: [PATCH] Docs: Add missing full stop for a comment in `create_initial_rest_routes()`. Follow-up to [49154]. Props david.binda. Fixes #51788. Built from https://develop.svn.wordpress.org/trunk@49611 git-svn-id: http://core.svn.wordpress.org/trunk@49349 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/rest-api.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/rest-api.php b/wp-includes/rest-api.php index 0cac341222..5a28f4f1d4 100644 --- a/wp-includes/rest-api.php +++ b/wp-includes/rest-api.php @@ -317,7 +317,7 @@ function create_initial_rest_routes() { $controller = new WP_REST_Block_Directory_Controller(); $controller->register_routes(); - // Site Health + // Site Health. $site_health = WP_Site_Health::get_instance(); $controller = new WP_REST_Site_Health_Controller( $site_health ); $controller->register_routes(); diff --git a/wp-includes/version.php b/wp-includes/version.php index 2b084af005..e0b44a6777 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta4-49610'; +$wp_version = '5.6-beta4-49611'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.