diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2024-05-04 22:46:16 +0000 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2024-05-04 22:46:16 +0000 |
| commit | e182d1f19dd675f826d74abdecb292c11f3a4224 (patch) | |
| tree | 7f1c169d314ec269670b6f8ece8e9f2357ba989f /exercises/098_bit_manipulation2.zig | |
| parent | 27db3112f943c851959a2257f8e2c58c6dddf8ab (diff) | |
| parent | 09e2f37a5057dd2861009238c3f664f96fc6a4e4 (diff) | |
Merge pull request 'fix: typos in exercises 094 and 098' (#87) from d-hain/ziglings-exercises:typo-fix-094-098 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/87
Diffstat (limited to 'exercises/098_bit_manipulation2.zig')
| -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 9abb14c..64cea4b 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 |
