From f4977d70ca4b18f2ecd57f1d5964ede07a1249ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Fro=C5=82ow?= Date: Sat, 30 Sep 2023 08:04:18 +0200 Subject: [PATCH] space --- exercises/097_bit_manipulation.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: