mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-02-27 11:12:50 +00:00
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. Fixes #58250. git-svn-id: https://develop.svn.wordpress.org/trunk@55721 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
3a6d1fb02a
commit
a5f3087f6b
@ -1465,9 +1465,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 );
|
||||
|
||||
Loading…
Reference in New Issue
Block a user