Skip to content

Commit a71708e

Browse files
committed
fix(css): correct CC_UPPER_U typo (E -> U)
1 parent 9f98d80 commit a71708e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/css/walkCssTokens.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const CC_LOWER_Z = "z".charCodeAt(0);
6666
const CC_UPPER_A = "A".charCodeAt(0);
6767
const CC_UPPER_F = "F".charCodeAt(0);
6868
const CC_UPPER_E = "E".charCodeAt(0);
69-
const CC_UPPER_U = "E".charCodeAt(0);
69+
const CC_UPPER_U = "U".charCodeAt(0);
7070
const CC_UPPER_Z = "Z".charCodeAt(0);
7171
const CC_0 = "0".charCodeAt(0);
7272
const CC_9 = "9".charCodeAt(0);

0 commit comments

Comments
 (0)