fix(css): correct CC_UPPER_U typo (E -> U) (#19989)

This commit is contained in:
Xiao 2025-10-08 00:10:42 +08:00 committed by GitHub
parent f3ef1428b3
commit b7530c2510
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ const CC_LOWER_Z = "z".charCodeAt(0);
const CC_UPPER_A = "A".charCodeAt(0); const CC_UPPER_A = "A".charCodeAt(0);
const CC_UPPER_F = "F".charCodeAt(0); const CC_UPPER_F = "F".charCodeAt(0);
const CC_UPPER_E = "E".charCodeAt(0); const CC_UPPER_E = "E".charCodeAt(0);
const CC_UPPER_U = "E".charCodeAt(0); const CC_UPPER_U = "U".charCodeAt(0);
const CC_UPPER_Z = "Z".charCodeAt(0); const CC_UPPER_Z = "Z".charCodeAt(0);
const CC_0 = "0".charCodeAt(0); const CC_0 = "0".charCodeAt(0);
const CC_9 = "9".charCodeAt(0); const CC_9 = "9".charCodeAt(0);