diff options
| author | kprotty <kbutcher6200@gmail.com> | 2021-06-25 12:59:28 -0500 |
|---|---|---|
| committer | kprotty <kbutcher6200@gmail.com> | 2021-06-30 21:49:00 -0500 |
| commit | 6a903fc4c0ebe67f953feef253cbdfd43893a1bd (patch) | |
| tree | 45dbeee544e8a31b44e6b702a5de240bf22f6af7 /lib/std | |
| parent | 009c95b8ec2f19f6d0db25c9284a7f79a07c387f (diff) | |
| download | zig-6a903fc4c0ebe67f953feef253cbdfd43893a1bd.tar.gz zig-6a903fc4c0ebe67f953feef253cbdfd43893a1bd.zip | |
std.Thread: more typo fixes
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/Thread.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/Thread.zig b/lib/std/Thread.zig index e7bb645d26..04bd94729d 100644 --- a/lib/std/Thread.zig +++ b/lib/std/Thread.zig @@ -408,7 +408,7 @@ const PosixThreadImpl = struct { os.EPERM => unreachable, os.EINVAL => unreachable, else => |err| return os.unexpectedErrno(err), - }; + } } fn getHandle(self: Impl) ThreadHandle { @@ -580,7 +580,7 @@ const LinuxThreadImpl = struct { os.EPERM => unreachable, os.EUSERS => unreachable, else => |err| return os.unexpectedErrno(err), - }; + } } fn getHandle(self: Impl) ThreadHandle { |
