authorgravatar for inbox-121@johnlate.scnr.netjohnLate <inbox-121@johnlate.scnr.net> 2021-02-22 19:29:00+01:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2021-02-23 11:10:24+02:00
logd9e46dceeca3f66b87e6b2e36415417495d2d2a0
tree5b07bed9459cb86280a86d0af4d0c47d48e0aa40
parent0aef1faa820e29a9eceb51a2048977d7be938f2a

std.Thread.Semaphore: Fix wrong variable name

Fixes ziglang#8052

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Thread/Semaphore.zig+1-1
...@@ -13,7 +13,7 @@ cond: Condition = .{},...@@ -13,7 +13,7 @@ cond: Condition = .{},
13//! It is OK to initialize this field to any value.13//! It is OK to initialize this field to any value.
14permits: usize = 0,14permits: usize = 0,
1515
16const RwLock = @This();16const Semaphore = @This();
17const std = @import("../std.zig");17const std = @import("../std.zig");
18const Mutex = std.Thread.Mutex;18const Mutex = std.Thread.Mutex;
19const Condition = std.Thread.Condition;19const Condition = std.Thread.Condition;