Skip to content

Commit

Permalink
Merge pull request 'Fix minor typo' (#32) from babaiserror/exercises:…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Boesch committed Dec 30, 2023
2 parents 72e15c9 + 2fb7da5 commit e7c106b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/098_bit_manipulation2.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e7c106b

Please sign in to comment.