Skip to content

Commit 402ae9f

Browse files
committed
Fix \c -> \r (carriage return) typo
1 parent d469ae4 commit 402ae9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wp-includes/html-api/class-wp-html-tag-processor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4134,7 +4134,7 @@ private function is_json_script_tag(): bool {
41344134
* └─────────▶ ║ ║ └────────── │ escaped │ ─┘
41354135
* ╚══════════════╝ └───────────┘
41364136
*
4137-
* † = Case insensitive 'script' followed by one of ' \t\f\c\n/>'
4137+
* † = Case insensitive 'script' followed by one of ' \t\f\r\n/>'
41384138
*
41394139
* The original source of this graph is included at the bottom of this file.
41404140
*
@@ -4998,7 +4998,7 @@ public function get_doctype_info(): ?WP_HTML_Doctype_Info {
49984998
script_data_double_escaped -> script_data [label="-->"];
49994999
script_data_double_escaped -> script_data_escaped [label="</script†"];
50005000
5001-
label="† = Case insensitive 'script' followed by one of ' \\t\\f\\c\\n/>'";
5001+
label="† = Case insensitive 'script' followed by one of ' \\t\\f\\r\\n/>'";
50025002
labelloc=b;
50035003
}
50045004
*/

0 commit comments

Comments
 (0)