From 9e1e7d60c9cb95b58f6e8257a4f19b5452da2876 Mon Sep 17 00:00:00 2001 From: Thomas Skarshaug Date: Tue, 25 Aug 2026 21:49:11 +0200 Subject: [PATCH] Fix simple typo in process.odin --- core/os/process.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/os/process.odin b/core/os/process.odin index ef3b09fdd..c5ce79c17 100644 --- a/core/os/process.odin +++ b/core/os/process.odin @@ -344,7 +344,7 @@ Process_Desc :: struct { // stderr output. stderr: ^File, // The `stdout` handle to give to the child process. It can be either a file - // or a writeabe end of a pipe. Passing a `nil` will shut down the process' + // or a writeable end of a pipe. Passing a `nil` will shut down the process' // stdout output. stdout: ^File, // The `stdin` handle to give to the child process. It can either be a file