fix: by convention deinit() should not take pointers to self

This commit is contained in:
2022-01-07 19:16:02 -04:00
parent c6123d8a6d
commit 9f64804763
5 changed files with 7 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ pub const Scheduler = struct {
return scheduler;
}
pub fn deinit(self: *@This()) void {
pub fn deinit(self: @This()) void {
self.queue.deinit();
}