From 1e42538e2270b1211d722c0460ef435fa74232be Mon Sep 17 00:00:00 2001 From: Hunam Date: Wed, 20 Apr 2022 19:58:41 +0200 Subject: [PATCH] os: small cleanup of function description (#14112) --- 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 40d03658af..a39e7ae303 100644 --- a/vlib/os/os.v +++ b/vlib/os/os.v @@ -368,7 +368,7 @@ pub fn expand_tilde_to_home(path string) string { } // write_file writes `text` data to the file in `path`. -// If `path` exists already, the contents of `path` will be overwritten with the contents of `text`. +// If `path` exists, the contents of `path` will be overwritten with the contents of `text`. pub fn write_file(path string, text string) ? { mut f := create(path) ? unsafe { f.write_full_buffer(text.str, usize(text.len)) ? }