fmt: fix alignment of struct init fields (#22025)

This commit is contained in:
yuyi 2024-08-11 14:11:24 +08:00 committed by GitHub
parent 99da5726db
commit c51d30bf53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
671 changed files with 18817 additions and 18787 deletions

View file

@ -59,21 +59,21 @@ pub fn create(path string) !File {
pub fn stdin() File {
return File{
fd: 0
fd: 0
is_opened: true
}
}
pub fn stdout() File {
return File{
fd: 1
fd: 1
is_opened: true
}
}
pub fn stderr() File {
return File{
fd: 2
fd: 2
is_opened: true
}
}