HTML API: Adjust coding style to pass Gutenberg linter.

This patch adjusts some minor neutral whitespace that the Gutenberg linting rejects.
There are no code changes otherwise.

Props dmsnell.
Merges [55721] to the 6.2 branch.
Fixes #58250.
Built from https://develop.svn.wordpress.org/branches/6.2@55722


git-svn-id: http://core.svn.wordpress.org/branches/6.2@55234 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Bernhard Reiter 2023-05-04 08:46:21 +00:00
parent 34fdb7885c
commit 6e932eb677
2 changed files with 4 additions and 4 deletions

View File

@ -1464,9 +1464,9 @@ class WP_HTML_Tag_Processor {
$accumulated_shift_for_given_point += $shift;
}
$output_buffer .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
$output_buffer .= $diff->text;
$bytes_already_copied = $diff->end;
$output_buffer .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
$output_buffer .= $diff->text;
$bytes_already_copied = $diff->end;
}
$this->html = $output_buffer . substr( $this->html, $bytes_already_copied );

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.2.1-alpha-55708';
$wp_version = '6.2.1-alpha-55722';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.