aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2024-05-20 10:52:41 +0100
committerGitHub <noreply@github.com>2024-05-20 10:52:41 +0100
commitf64139987006a40c0548cdc507c4aca72e1435ea (patch)
treeb0952ba969f87f8ed409f2764eaac3e152fe5167
parent891fefe1178efffd11c31439cb1ed3d283b5a24f (diff)
parenta9629679edbde03f731597b1db65418398f64cea (diff)
Merge pull request #3604 from matias-eduardo/master
remove extra newline in enumerated array hash fmt
-rw-r--r--core/fmt/fmt.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin
index 5f9485f7f..01d4ec26d 100644
--- a/core/fmt/fmt.odin
+++ b/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)
}