aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Thread.zig
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-04-30 18:02:08 +0100
committerAndrew Kelley <andrew@ziglang.org>2023-04-30 18:16:04 -0700
commit94e30a756edc4c2182168dabd97d481b8aec0ff2 (patch)
tree50d4273d99ddd7a442d62b615cf9dc6128e71fef /lib/std/Thread.zig
parentec6ffaa1e47388a59035277dafbe3d9999a80fca (diff)
downloadzig-94e30a756edc4c2182168dabd97d481b8aec0ff2.tar.gz
zig-94e30a756edc4c2182168dabd97d481b8aec0ff2.zip
std: fix a bunch of typos
The majority of these are in comments, some in doc comments which might affect the generated documentation, and a few in parameter names - nothing that should be breaking, however.
Diffstat (limited to 'lib/std/Thread.zig')
-rw-r--r--lib/std/Thread.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/Thread.zig b/lib/std/Thread.zig
index 119328b2a8..d213b167dd 100644
--- a/lib/std/Thread.zig
+++ b/lib/std/Thread.zig
@@ -469,8 +469,8 @@ const UnsupportedImpl = struct {
return unsupported(self);
}
- fn unsupported(unusued: anytype) noreturn {
- _ = unusued;
+ fn unsupported(unused: anytype) noreturn {
+ _ = unused;
@compileError("Unsupported operating system " ++ @tagName(target.os.tag));
}
};