From 6f3db36251c5fd9e3097419969f84df8da72227c Mon Sep 17 00:00:00 2001 From: FineFindus Date: Fri, 20 Sep 2024 17:42:08 +0200 Subject: [PATCH] termio: correct comment about windows support The comment has conflicting information about supporting windows. This removes the incorrect information that only windows is supported. --- src/termio/Exec.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/termio/Exec.zig b/src/termio/Exec.zig index 87e7e4b2f..1f7ac5c5e 100644 --- a/src/termio/Exec.zig +++ b/src/termio/Exec.zig @@ -154,7 +154,7 @@ pub fn threadEnter( processExit, ); - // Start our termios timer. We only support this on Windows. + // Start our termios timer. We don't support this on Windows. // Fundamentally, we could support this on Windows so we're just // waiting for someone to implement it. if (comptime builtin.os.tag != .windows) {