Skip to content

Commit 5f06f84

Browse files
committed
Reformat some documentation
1 parent 57b5128 commit 5f06f84

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/wp-includes/html-api/class-wp-css-selector-parser-matcher.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,10 @@ final protected static function parse_ident( string $input, int &$offset ): ?str
316316
* Checks for two valid escape codepoints.
317317
*
318318
* > 4.3.8. Check if two code points are a valid escape
319-
* > This section describes how to check if two code points are a valid escape. The algorithm described here can be called explicitly with two code points, or can be called with the input stream itself. In the latter case, the two code points in question are the current input code point and the next input code point, in that order.
319+
* > This section describes how to check if two code points are a valid escape. The algorithm
320+
* > described here can be called explicitly with two code points, or can be called with the
321+
* > input stream itself. In the latter case, the two code points in question are the current
322+
* > input code point and the next input code point, in that order.
320323
* >
321324
* > Note: This algorithm will not consume any additional code point.
322325
* >
@@ -328,7 +331,7 @@ final protected static function parse_ident( string $input, int &$offset ): ?str
328331
*
329332
* https://www.w3.org/TR/css-syntax-3/#starts-with-a-valid-escape
330333
*
331-
* @todo this does not check whether the second codepoint is valid.
334+
* @todo The second codepoint is not checked for validity.
332335
*
333336
* @param string $input The input string.
334337
* @param int $offset The byte offset in the string.

0 commit comments

Comments
 (0)