1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

[skip ci] fix typo in comment

This commit is contained in:
Ilija Tovilo
2023-03-05 21:28:50 +01:00
parent 5904952af9
commit 9f1269a34e

View File

@@ -78,7 +78,7 @@ static const char _codes[26] =
};
/* Note: these function require an uppercase letter input! */
/* Note: these functions require an uppercase letter input! */
static zend_always_inline char encode(char c) {
if (isalpha(c)) {
ZEND_ASSERT(c >= 'A' && c <= 'Z');