aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-01-13 15:14:07 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-01-13 15:14:07 +0000
commitfa22e861d5b8b63e0f34934e9a21544ad25b4110 (patch)
tree1161dc76638e16a857bdb00df77e46d61db9740f
parent7bfd7adce86a2cef5e72cce20ab46a23a2af0964 (diff)
parent58dff3f5043b26f813e017651ea25cfb3f6772ba (diff)
Merge pull request 'added space, missing after end-of-sentence dot.' (#40) from anthon/exercises:missing-space-1 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/40
-rw-r--r--exercises/097_bit_manipulation.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/097_bit_manipulation.zig b/exercises/097_bit_manipulation.zig
index 38f2a86..424fb4c 100644
--- a/exercises/097_bit_manipulation.zig
+++ b/exercises/097_bit_manipulation.zig
@@ -20,7 +20,7 @@
//
// Zig provides all the necessary functions to change the bits inside
// a variable. It is distinguished whether the bit change leads to an
-// overflow or not.The details are in the Zig documentation in section
+// overflow or not. The details are in the Zig documentation in section
// 10.1 "Table of Operators".
//
// Here are some examples of how the bits of variables can be changed: