fix(lint): correct reported typos
Zig Project Action / Lint, Spell-check and test zig project (push) Has been cancelled

This commit is contained in:
2026-06-06 20:51:59 +02:00
parent ae666cb436
commit b312c0e2f3
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -222,7 +222,7 @@ pub fn ParallelIter(T: type) type {
self.sink = try gpa.alloc(T, self.impl.len());
if (self.poolSize == 0) {
return; // Assume threads are unavailable, complete syncronously
return; // Assume threads are unavailable, complete synchronously
} else {
for (self.pool) |*thread| {
thread.* = try std.Thread.spawn(.{}, threadHandle, .{&self});
@@ -232,7 +232,7 @@ pub fn ParallelIter(T: type) type {
pub fn join(self: *Self) []T {
if (self.pool.len == 0) {
// Assume threads are unavailable, complete syncronously
// Assume threads are unavailable, complete synchronously
while (true) {
self.handle() orelse break;
}