diff options
| author | Chris Boesch <[email protected]> | 2023-12-30 16:34:16 +0000 |
|---|---|---|
| committer | Chris Boesch <[email protected]> | 2023-12-30 16:34:16 +0000 |
| commit | e7c106ba3a0706722d314ee9f08f1a66be637348 (patch) | |
| tree | 7c417a21393f50675b0b30a2d5732befb2c9c114 /exercises | |
| parent | 72e15c9ef31cef2ffdda34b4e466b1687bca0bd9 (diff) | |
| parent | 2fb7da53e7189b50562d8819493a09bd5df4add1 (diff) | |
| download | ziglings-e7c106ba3a0706722d314ee9f08f1a66be637348.tar.xz ziglings-e7c106ba3a0706722d314ee9f08f1a66be637348.zip | |
Merge pull request 'Fix minor typo' (#32) from babaiserror/exercises:typo into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/32
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/098_bit_manipulation2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/098_bit_manipulation2.zig b/exercises/098_bit_manipulation2.zig index e39486f..9abb14c 100644 --- a/exercises/098_bit_manipulation2.zig +++ b/exercises/098_bit_manipulation2.zig @@ -49,7 +49,7 @@ fn isPangram(str: []const u8) bool { // then we set the bit at the position // // to do this, we use a little trick: - // since the letters in the ASCI table start at 65 + // since the letters in the ASCII table start at 65 // and are numbered sequentially, we simply subtract the // first letter (in this case the 'a') from the character // found, and thus get the position of the desired bit |
