mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
vlib: update doc comments (#19231)
This commit is contained in:
parent
78c34326f1
commit
f755118e7c
13 changed files with 22 additions and 20 deletions
|
@ -1001,7 +1001,8 @@ pub fn chown(path string, owner int, group int) ! {
|
|||
}
|
||||
}
|
||||
|
||||
// open_append opens `path` file for appending.
|
||||
// open_append tries to open a file from a given path.
|
||||
// If successfull, it and returns a `File` for appending.
|
||||
pub fn open_append(path string) !File {
|
||||
mut file := File{}
|
||||
$if windows {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue