8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ac2c0 commit f8b3564Copy full SHA for f8b3564
src/HTML5/Parser/CharacterReference.php
@@ -48,7 +48,7 @@ public static function lookupDecimal($int)
48
}
49
50
/**
51
- * Given a hexidecimal number, return the UTF-8 character.
+ * Given a hexadecimal number, return the UTF-8 character.
52
*
53
* @param $hexdec
54
src/HTML5/Parser/Tokenizer.php
@@ -1127,7 +1127,7 @@ protected function decodeCharacterReference($inAttribute = false)
1127
return '&';
1128
1129
1130
- // Hexidecimal encoding.
+ // Hexadecimal encoding.
1131
// X[0-9a-fA-F]+;
1132
// x[0-9a-fA-F]+;
1133
if ('x' === $tok || 'X' === $tok) {
0 commit comments