Fix typos

This commit is contained in:
gingerBill
2020-12-02 23:11:46 +00:00
parent 7389ffba6d
commit 4d30b88927

View File

@@ -293,6 +293,9 @@ scan_number :: proc(s: ^Scanner, ch: rune, seen_dot: bool) -> (rune, rune) {
case 'z':
ch = advance(s);
base, prefix = 12, 'z';
case 'h':
tok = Float;
fallthrough;
case 'x':
ch = advance(s);
base, prefix = 16, 'x';