aboutsummaryrefslogtreecommitdiff
path: root/std/event.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-08-02 17:04:17 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-08-02 17:04:17 -0400
commit821805aa92898cfdb770b87ac916e45e428621b8 (patch)
tree9fc4468728398b92c5d3c4bdf62fd57434abf9ee /std/event.zig
parente3ae2cfb5243e7255bf4dbcc8a9b7e77a31e9d45 (diff)
downloadzig-821805aa92898cfdb770b87ac916e45e428621b8.tar.gz
zig-821805aa92898cfdb770b87ac916e45e428621b8.zip
WIP: Channel.getOrNull
Diffstat (limited to 'std/event.zig')
-rw-r--r--std/event.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/event.zig b/std/event.zig
index 193ccbf3e6..bd3262a575 100644
--- a/std/event.zig
+++ b/std/event.zig
@@ -3,7 +3,7 @@ pub const Future = @import("event/future.zig").Future;
pub const Group = @import("event/group.zig").Group;
pub const Lock = @import("event/lock.zig").Lock;
pub const Locked = @import("event/locked.zig").Locked;
-pub const RwLock = @import("event/rwlock.zig").Lock;
+pub const RwLock = @import("event/rwlock.zig").RwLock;
pub const RwLocked = @import("event/rwlocked.zig").RwLocked;
pub const Loop = @import("event/loop.zig").Loop;
pub const fs = @import("event/fs.zig");