authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-07-04 02:59:44 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-07-04 02:59:44 -07:00
log1a77b9827e71b357daaa14e768ea0706d675f120
tree9d0de906086a89f8b63cfd55a3e7eb50163c68c6
parentc50bb32e0145da3e0329be5875e14007ab8559bc

util/yaml- add stream to item format


1 files changed, 1 insertions(+), 1 deletions(-)

src/util/yaml.zig+1-1
...@@ -37,7 +37,7 @@ pub const Item = union(enum) {...@@ -37,7 +37,7 @@ pub const Item = union(enum) {
37 .event => {37 .event => {
38 try std.fmt.format(writer, "{s}", .{@tagName(self.event.type)});38 try std.fmt.format(writer, "{s}", .{@tagName(self.event.type)});
39 },39 },
40 .kv, .document => {40 .kv, .document, .stream => {
41 unreachable;41 unreachable;
42 },42 },
43 .mapping => {43 .mapping => {