mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix typos
This commit is contained in:
@@ -293,6 +293,9 @@ scan_number :: proc(s: ^Scanner, ch: rune, seen_dot: bool) -> (rune, rune) {
|
|||||||
case 'z':
|
case 'z':
|
||||||
ch = advance(s);
|
ch = advance(s);
|
||||||
base, prefix = 12, 'z';
|
base, prefix = 12, 'z';
|
||||||
|
case 'h':
|
||||||
|
tok = Float;
|
||||||
|
fallthrough;
|
||||||
case 'x':
|
case 'x':
|
||||||
ch = advance(s);
|
ch = advance(s);
|
||||||
base, prefix = 16, 'x';
|
base, prefix = 16, 'x';
|
||||||
|
|||||||
Reference in New Issue
Block a user