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
This commit is contained in:
isabel_brison 2023-07-06 04:41:23 +00:00
parent b6bada11c9
commit 6ec98b81d7
2 changed files with 4 additions and 4 deletions

View File

@ -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-<name>`.
*/
* We only want to append selectors for blocks using custom selectors
* i.e. not `wp-block-<name>`.
*/
$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'] ) );

View File

@ -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.