diff options
| author | Robin Voetter <robin@voetter.nl> | 2024-07-20 22:28:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-20 22:28:42 +0200 |
| commit | 6d7bbab740a8c4790fe30c63d026d72fb7556984 (patch) | |
| tree | 6c8f34d1ad363fda01f0bfa6e6232f0eb44ab0d8 /src/codegen/spirv.zig | |
| parent | b5f3d121644031cf644271296e1ee5dbf363abeb (diff) | |
| parent | 4c71d3f29e99d5fc4e69d842457933dc55fc7ac5 (diff) | |
| download | zig-6d7bbab740a8c4790fe30c63d026d72fb7556984.tar.gz zig-6d7bbab740a8c4790fe30c63d026d72fb7556984.zip | |
Merge pull request #20696 from sobolevn/typos-fix
Fix typos in code comments in `src/`
Diffstat (limited to 'src/codegen/spirv.zig')
| -rw-r--r-- | src/codegen/spirv.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/spirv.zig b/src/codegen/spirv.zig index bd14c7a03b..23911c4fbf 100644 --- a/src/codegen/spirv.zig +++ b/src/codegen/spirv.zig @@ -3845,7 +3845,7 @@ const DeclGen = struct { const result = try self.normalize(low_bits, info); // Now, we need to check the overflow bits AND the sign - // bit for the expceted overflow bits. + // bit for the expected overflow bits. // To do that, shift out everything bit the sign bit and // then check what remains. const shift = Temporary.init(full_result.ty, try self.constInt(full_result.ty, info.bits - 1, .direct)); |
