Browse Source

Merge pull request #3604 from matias-eduardo/master

remove extra newline in enumerated array hash fmt
gingerBill 1 năm trước cách đây
mục cha
commit
f641399870
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      core/fmt/fmt.odin

+ 0 - 1
core/fmt/fmt.odin

@@ -2679,7 +2679,6 @@ fmt_value :: proc(fi: ^Info, v: any, verb: rune) {
 			io.write_byte(fi.writer, '[' if verb != 'w' else '{', &fi.n)
 			io.write_byte(fi.writer, '\n', &fi.n)
 			defer {
-				io.write_byte(fi.writer, '\n', &fi.n)
 				fmt_write_indent(fi)
 				io.write_byte(fi.writer, ']' if verb != 'w' else '}', &fi.n)
 			}