widgets(terminal): remove comment

This commit is contained in:
Tim Culverhouse 2024-06-06 19:34:56 -05:00
parent f21559cc51
commit 3ff47e6845

View file

@ -150,7 +150,6 @@ fn anyReader(self: *const Terminal) std.io.AnyReader {
/// process the output from the command on the pty /// process the output from the command on the pty
fn run(self: *Terminal) !void { fn run(self: *Terminal) !void {
// ridiculous buffer size so we never have to handle incomplete reads
var parser: Parser = .{ var parser: Parser = .{
.buf = try std.ArrayList(u8).initCapacity(self.allocator, 128), .buf = try std.ArrayList(u8).initCapacity(self.allocator, 128),
}; };