mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Fix typo in fmt
This commit is contained in:
+1
-1
@@ -1332,7 +1332,7 @@ fmt_value :: proc(fi: ^Info, v: any, verb: rune) {
|
|||||||
is_soa := info.soa_base_type != nil;
|
is_soa := info.soa_base_type != nil;
|
||||||
|
|
||||||
strings.write_byte(fi.buf, is_soa ? '[' : '{');
|
strings.write_byte(fi.buf, is_soa ? '[' : '{');
|
||||||
defer strings.write_byte(fi.buf, is_soa ? '[' : '}');
|
defer strings.write_byte(fi.buf, is_soa ? ']' : '}');
|
||||||
|
|
||||||
fi.indent += 1; defer fi.indent -= 1;
|
fi.indent += 1; defer fi.indent -= 1;
|
||||||
hash := fi.hash; defer fi.hash = hash;
|
hash := fi.hash; defer fi.hash = hash;
|
||||||
|
|||||||
Reference in New Issue
Block a user