Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
joethephish committed Jun 6, 2024
1 parent df3be47 commit c122356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/InkParser/InkParser_CharacterRanges.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public partial class InkParser
CharacterRange.Define('\u0600', '\u06FF', excludes: new CharacterSet());
public static readonly CharacterRange Korean =
CharacterRange.Define('\uAC00', '\uD7AF', excludes: new CharacterSet());
public static readonly CharacterRange Latin1Supplement =
public static readonly CharacterRange Latin1Supplement =
CharacterRange.Define('\u0080', '\u00FF', excludes: new CharacterSet());
public static readonly CharacterRange Chinese =
public static readonly CharacterRange Chinese =
CharacterRange.Define('\u4E00', '\u9FFF', excludes: new CharacterSet());

private void ExtendIdentifierCharacterRanges(CharacterSet identifierCharSet)
Expand Down

0 comments on commit c122356

Please sign in to comment.