fix error set

This commit is contained in:
Andrew Kelley 2026-01-08 16:36:18 -08:00
parent e0d06b40e3
commit b996675dcf

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),