From 2fb7da53e7189b50562d8819493a09bd5df4add1 Mon Sep 17 00:00:00 2001 From: babaiserror Date: Fri, 29 Dec 2023 22:59:39 -0500 Subject: [PATCH] Fix minor typo --- exercises/098_bit_manipulation2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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