From 21c74f187020abfc852aba55f830e925e4fa1cc5 Mon Sep 17 00:00:00 2001 From: Isabel Brison Date: Thu, 6 Jul 2023 04:39:03 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@56146 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/block-supports/settings.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/block-supports/settings.php b/src/wp-includes/block-supports/settings.php index ba541e8ab2..0be57f9b03 100644 --- a/src/wp-includes/block-supports/settings.php +++ b/src/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'] ) );