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.
This commit is contained in:
Linus Groh
2023-04-30 18:02:08 +01:00
committed by Andrew Kelley
parent ec6ffaa1e4
commit 94e30a756e
50 changed files with 97 additions and 97 deletions

View File

@@ -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));
}
};