Skip to content

Commit 048d0d9

Browse files
committed
vlib: fmt checker.v
1 parent f83a061 commit 048d0d9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

‎vlib/v2/types/checker.v‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4634,7 +4634,9 @@ fn (mut c Checker) find_field_or_method(t Type, raw_name string) !Type {
46344634
return int_
46354635
}
46364636
if name == 'str' {
4637-
return Pointer{base_type: u8_}
4637+
return Pointer{
4638+
base_type: u8_
4639+
}
46384640
}
46394641
if o := c.scope.lookup_parent('string', 0) {
46404642
otyp := o.typ()

0 commit comments

Comments
 (0)