From fab939595d2f4caf862d4a8f0c86651bac145aa3 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 11 Mar 2018 10:35:31 +0000 Subject: [PATCH] Docs: Fix typo in a comment in `WP_Community_Events::trim_events()`. See #42505. Built from https://develop.svn.wordpress.org/trunk@42826 git-svn-id: http://core.svn.wordpress.org/trunk@42656 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-community-events.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-community-events.php b/wp-admin/includes/class-wp-community-events.php index e3fac7ae6c..c191b0a26c 100644 --- a/wp-admin/includes/class-wp-community-events.php +++ b/wp-admin/includes/class-wp-community-events.php @@ -456,7 +456,7 @@ class WP_Community_Events { $response_body['events'] = array_slice( $response_body['events'], 0, 3 ); $trimmed_event_types = wp_list_pluck( $response_body['events'], 'type' ); - // Make sure the soonest upcoming WordCamps is pinned in the list. + // Make sure the soonest upcoming WordCamp is pinned in the list. if ( ! in_array( 'wordcamp', $trimmed_event_types ) && $wordcamps ) { array_pop( $response_body['events'] ); array_push( $response_body['events'], $wordcamps[0] ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 5d4523bd14..088a237122 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42825'; +$wp_version = '5.0-alpha-42826'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.