ci: run `v fmt -w vlib/os/file.c.v`

pull/9976/head^2
Delyan Angelov 2021-05-04 08:40:27 +03:00
parent c21df2d44c
commit 298fc533e4
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ pub fn create(path string) ?File {
[deprecated: 'use os.stdin() instead']
[deprecated_after: '2021-05-17']
pub fn open_stdin() File {
return stdin()
return stdin()
}
// stdin - return an os.File for stdin, so that you can use .get_line on it too.