From 58dff3f5043b26f813e017651ea25cfb3f6772ba Mon Sep 17 00:00:00 2001 From: Anthon Date: Wed, 10 Jan 2024 06:16:44 +0000 Subject: [PATCH 1/2] added space, missing after end-of-sentence dot. --- 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: From 7bfd7adce86a2cef5e72cce20ab46a23a2af0964 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 13 Jan 2024 14:27:58 +0000 Subject: [PATCH 2/2] Update exercises/093_hello_c.zig small typo --- exercises/093_hello_c.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/093_hello_c.zig b/exercises/093_hello_c.zig index 043b9ed..182e0b0 100644 --- a/exercises/093_hello_c.zig +++ b/exercises/093_hello_c.zig @@ -40,7 +40,7 @@ // our well-known "import" for Zig const std = @import("std"); -// and here the new the import for C +// and here the new import for C const c = @cImport({ @cInclude("unistd.h"); });