run zig fmt on std lib and self hosted

This commit is contained in:
Vexu
2020-07-11 14:09:04 +03:00
parent 8110639c79
commit e85fe13e44
151 changed files with 537 additions and 530 deletions

View File

@@ -53,7 +53,7 @@ pub fn ArrayListAligned(comptime T: type, comptime alignment: ?u29) type {
/// Deprecated: use `items` field directly.
/// Return contents as a slice. Only valid while the list
/// doesn't change size.
pub fn span(self: var) @TypeOf(self.items) {
pub fn span(self: anytype) @TypeOf(self.items) {
return self.items;
}