fix(typos): correct spelling mistakes
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 52s

This commit is contained in:
2024-11-09 21:34:33 +01:00
parent c83cf530ce
commit 4e8487353e
3 changed files with 3 additions and 3 deletions

View File

@@ -69,7 +69,7 @@ pub fn mergeTaggedUnions(comptime A: type, comptime B: type) type {
} });
}
// Determine at `comptime` wether the provided type `E` is an `union(enum)`.
// Determine at `comptime` whether the provided type `E` is an `union(enum)`.
pub fn isTaggedUnion(comptime E: type) bool {
switch (@typeInfo(E)) {
.Union => |u| {