Skip to content

Commit 83b4167

Browse files
authored
fmt: fix interface fields alignment (#19866)
1 parent 915ac4e commit 83b4167

16 files changed

+318
-252
lines changed

vlib/builtin/js/array.js.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ pub interface JS.TypedArray {
424424
mut:
425425
byteLength JS.Number
426426
byteOffset JS.Number
427-
length JS.Number
427+
length JS.Number
428428
}
429429

430430
pub interface JS.Uint8Array {

vlib/builtin/js/builtin.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn panic(s string) {
1616
pub interface IError {
1717
// >> Hack to allow old style custom error implementations
1818
// TODO: remove once deprecation period for `IError` methods has ended
19-
msg string
19+
msg string
2020
code int // <<
2121
msg() string
2222
code() int

vlib/builtin/result.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module builtin
77
pub interface IError {
88
// >> Hack to allow old style custom error implementations
99
// TODO: remove once deprecation period for `IError` methods has ended
10-
msg string
10+
msg string
1111
code int // <<
1212
msg() string
1313
code() int

0 commit comments

Comments
 (0)