diff --git a/vlib/os/file.c.v b/vlib/os/file.c.v index 8c89175364f71f..cfc6107deb023a 100644 --- a/vlib/os/file.c.v +++ b/vlib/os/file.c.v @@ -880,4 +880,3 @@ pub fn (f &File) tell() !i64 { } return pos } - diff --git a/vlib/v/checker/checker.v b/vlib/v/checker/checker.v index 3d075249229f8b..f3aa8d418a7425 100644 --- a/vlib/v/checker/checker.v +++ b/vlib/v/checker/checker.v @@ -1624,7 +1624,7 @@ fn (mut c Checker) selector_expr(mut node ast.SelectorExpr) ast.Type { return ast.int_type } - c.error('`${unwrapped_sym.name}` 1has no property `${node.field_name}`', node.pos) + c.error('`${unwrapped_sym.name}` has no property `${node.field_name}`', node.pos) } } else { if sym.info is ast.Struct {