From 1d226a30e4bae924e8cd3776997289637e00ddb9 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Tue, 7 Jul 2026 23:28:26 +0200 Subject: [PATCH] Fix `is_tty` doc string --- core/os/file.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/os/file.odin b/core/os/file.odin index 61582c528..7e70332ce 100644 --- a/core/os/file.odin +++ b/core/os/file.odin @@ -536,7 +536,7 @@ is_directory :: proc(path: string) -> bool { } /* - `copy_file` copies a file from `src_path` to `dst_path` and returns an error if any was encountered. + `is_tty` returns `true` if `f` is a TTY, `false` if not. */ @(require_results) is_tty :: proc "contextless" (f: ^File) -> bool {