aboutsummaryrefslogtreecommitdiff
path: root/core/fmt.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-01-28 15:59:37 +0000
committergingerBill <bill@gingerbill.org>2018-01-28 15:59:37 +0000
commit5e4b62acfe658606f140fc5516958df9e30e471b (patch)
tree880df833be432fb89dd50b0af7d7e66448ac9cc9 /core/fmt.odin
parent9366fa8e951249bdce6f3ebc088dd8381ccba29d (diff)
Fix literal
Diffstat (limited to 'core/fmt.odin')
-rw-r--r--core/fmt.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fmt.odin b/core/fmt.odin
index c38073741..3d6ce70ee 100644
--- a/core/fmt.odin
+++ b/core/fmt.odin
@@ -175,7 +175,7 @@ write_type :: proc(buf: ^String_Buffer, ti: ^Type_Info) {
write_byte(buf, 'f');
write_i64(buf, i64(8*ti.size), 10);
case Type_Info_Complex:
- write_string(buf, 'complex');
+ write_string(buf, "complex");
write_i64(buf, i64(8*ti.size), 10);
case Type_Info_String:
write_string(buf, "string");