fix error set

This commit is contained in:
Andrew Kelley
2026-01-08 16:36:18 -08:00
parent 09d96c4903
commit f8e1257b62
+1 -4
View File
@@ -125,10 +125,7 @@ pub fn wait(child: *Child, io: Io) WaitError!Term {
return io.vtable.childWait(io.userdata, child);
}
pub const CollectOutputError = error{
Timeout,
StreamTooLong,
} || Allocator.Error || Io.File.Reader.Error;
pub const CollectOutputError = error{StreamTooLong} || Allocator.Error || Io.File.Reader.Error;
pub const CollectOutputOptions = struct {
stdout: *std.ArrayList(u8),