diff --git a/source/coral/utf8.zig b/source/coral/utf8.zig index fdc1794..f4fa5cd 100644 --- a/source/coral/utf8.zig +++ b/source/coral/utf8.zig @@ -44,7 +44,7 @@ pub fn parse_float(comptime bits: comptime_int, utf8: []const u8) ParseError!mat return result * factor; } -pub fn parse_signed(comptime bits: comptime_int, utf8: []const u8) IntParseError!math.Unsigned(bits) { +pub fn parse_signed(comptime bits: comptime_int, utf8: []const u8) IntParseError!math.Signed(bits) { // "" if (utf8.len == 0) return error.BadSyntax;