diff options
| author | kprotty <kbutcher6200@gmail.com> | 2021-06-20 10:37:40 -0500 |
|---|---|---|
| committer | kprotty <kbutcher6200@gmail.com> | 2021-06-30 21:49:00 -0500 |
| commit | 1ae969e5299ea71231e7045110332b23989e653c (patch) | |
| tree | f3855a1ff6618c899fe32ca8ab68a0cbaeb4c56a /lib/std/event | |
| parent | ca1e61b851351ec66ee3f1937586a2f9d02bbafc (diff) | |
| download | zig-1ae969e5299ea71231e7045110332b23989e653c.tar.gz zig-1ae969e5299ea71231e7045110332b23989e653c.zip | |
std.Thread: even more typo fixes
Diffstat (limited to 'lib/std/event')
| -rw-r--r-- | lib/std/event/loop.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/event/loop.zig b/lib/std/event/loop.zig index 26cbf3b988..9c8550d459 100644 --- a/lib/std/event/loop.zig +++ b/lib/std/event/loop.zig @@ -183,7 +183,7 @@ pub const Loop = struct { resume_node_count, ); - self.extra_threads = try self.arena.allocator.alloc(*Thread, extra_thread_count); + self.extra_threads = try self.arena.allocator.alloc(Thread, extra_thread_count); try self.initOsData(extra_thread_count); errdefer self.deinitOsData(); |
