std.Thread: fix some typos

This commit is contained in:
kprotty
2021-06-20 09:56:30 -05:00
parent 6ff64895cf
commit ca1e61b851
2 changed files with 15 additions and 21 deletions

View File

@@ -544,7 +544,7 @@ test "Futex - Chain" {
for (self.threads) |*entry, index| {
entry.signal = .{};
entry.thread = try std.Thread.spawn(.{}, runThread .{&self, index});
entry.thread = try std.Thread.spawn(.{}, runThread, .{&self, index});
}
self.threads[0].signal.notify();