Skip to content

Commit 0c6d222

Browse files
authored
Update Identifier.h
1 parent fe0cb45 commit 0c6d222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/AST/Identifier.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class Identifier {
134134
if (C < 0x80)
135135
return memchr(OpChars, C, sizeof(OpChars) - 1) != 0;
136136

137-
// Unicode math, syisOperatorStartCodePointmbol, arrow, dingbat, and line/box drawing chars.
137+
// Unicode math, arrow, dingbat, and line/box drawing chars.
138138
return (C >= 0x00A1 && C <= 0x00A7)
139139
|| C == 0x00A9 || C == 0x00AB || C == 0x00AC || C == 0x00AE
140140
|| C == 0x00B0 || C == 0x00B1 || C == 0x00B6 || C == 0x00BB

0 commit comments

Comments
 (0)