浏览代码

Correct bit_set printing

gingerBill 3 年之前
父节点
当前提交
0711d4e5fe
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      tools/odin-html-docs/odin_html_docs_main.odin

+ 1 - 0
tools/odin-html-docs/odin_html_docs_main.odin

@@ -886,6 +886,7 @@ write_type :: proc(using writer: ^Type_Writer, type: doc.Type, flags: Write_Type
 			write_type(writer, types[type_types[0]], flags)
 		}
 		if .Underlying_Type in type_flags {
+			io.write_string(w, "; ")
 			write_type(writer, types[type_types[1]], flags)
 		}
 		io.write_string(w, "]")