1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: fix typo in os.v (#17519)

This commit is contained in:
Ikko Eltociear Ashimine 2023-03-07 16:30:37 +09:00 committed by GitHub
parent 6e670ec908
commit 784592af83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {