From 784592af830b91166fbf6fe0ac1c9ae99b163c96 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 7 Mar 2023 16:30:37 +0900 Subject: [PATCH] os: fix typo in os.v (#17519) --- vlib/os/os.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/os/os.v b/vlib/os/os.v index 648f461bc8..4b800a818b 100644 --- a/vlib/os/os.v +++ b/vlib/os/os.v @@ -734,7 +734,7 @@ pub fn temp_dir() string { } // vtmp_dir returns the path to a folder, that is writable to V programs, *and* specific -// to the OS user. It can be overriden by setting the env variable `VTMP`. +// to the OS user. It can be overridden by setting the env variable `VTMP`. pub fn vtmp_dir() string { mut vtmp := getenv('VTMP') if vtmp.len > 0 {