Fix unmatched close brace in zir dump

This commit is contained in:
Martin Wickham 2021-09-01 16:32:37 -05:00 committed by Andrew Kelley
parent 3611487952
commit 93c6e31cf1

View File

@ -3424,7 +3424,7 @@ const Writer = struct {
try self.writeBody(stream, body);
self.indent -= 2;
try stream.writeByteNTimes(' ', self.indent);
try stream.writeAll(") ");
try stream.writeAll("}) ");
try self.writeSrc(stream, inst_data.src());
}