From 89170b70a85f71833525c4393525b3ae6615c9bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Fro=C5=82ow?= Date: Sun, 1 Oct 2023 08:38:31 +0200 Subject: [PATCH] we uses -> we use --- 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..595c977 100644 --- a/exercises/098_bit_manipulation2.zig +++ b/exercises/098_bit_manipulation2.zig @@ -39,7 +39,7 @@ fn isPangram(str: []const u8) bool { // first we check if the string has at least 26 characters if (str.len < 26) return false; - // we uses a 32 bit variable of which we need 26 bits + // we use a 32 bit variable of which we need 26 bits var bits: u32 = 0; // loop about all characters in the string