mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
std.Thread.Semaphore: Fix wrong variable name
Fixes ziglang#8052
This commit is contained in:
parent
0aef1faa82
commit
d9e46dceec
@ -13,7 +13,7 @@ cond: Condition = .{},
|
||||
//! It is OK to initialize this field to any value.
|
||||
permits: usize = 0,
|
||||
|
||||
const RwLock = @This();
|
||||
const Semaphore = @This();
|
||||
const std = @import("../std.zig");
|
||||
const Mutex = std.Thread.Mutex;
|
||||
const Condition = std.Thread.Condition;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user