From 6ec98b81d715e36f85ad13b7baa5aeb390ec245b Mon Sep 17 00:00:00 2001 From: isabel_brison Date: Thu, 6 Jul 2023 04:41:23 +0000 Subject: [PATCH] Editor: fix comment indentation. Fixes multiline comment indentation in `wp-includes/block-supports/settings.php`. Also fixes typo in the comment. Props mukesh27. See #58586. Built from https://develop.svn.wordpress.org/trunk@56146 git-svn-id: http://core.svn.wordpress.org/trunk@55658 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/block-supports/settings.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/block-supports/settings.php b/wp-includes/block-supports/settings.php index ba541e8ab2..0be57f9b03 100644 --- a/wp-includes/block-supports/settings.php +++ b/wp-includes/block-supports/settings.php @@ -97,9 +97,9 @@ function _wp_add_block_level_preset_styles( $pre_render, $block ) { $blocks = $registry->get_all_registered(); foreach ( $blocks as $block_type ) { /* - * We only want to append selectors for block's using custom selectors - * i.e. not `wp-block-`. - */ + * We only want to append selectors for blocks using custom selectors + * i.e. not `wp-block-`. + */ $has_custom_selector = ( isset( $block_type->supports['__experimentalSelector'] ) && is_string( $block_type->supports['__experimentalSelector'] ) ) || ( isset( $block_type->selectors['root'] ) && is_string( $block_type->selectors['root'] ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 2de8f8ef49..16b46fda12 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-beta3-56145'; +$wp_version = '6.3-beta3-56146'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.