From 11868112c54dc95023b2012bb040bd9f2de031e4 Mon Sep 17 00:00:00 2001 From: xiaolizhi Date: Sun, 21 Jun 2026 21:22:12 +0200 Subject: 107: change comment "brackets" -> "braces" Signed-off-by: xiaolizhi --- exercises/107_threading.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/107_threading.zig b/exercises/107_threading.zig index 2b7d4c0..5072648 100644 --- a/exercises/107_threading.zig +++ b/exercises/107_threading.zig @@ -74,9 +74,9 @@ pub fn main() !void { // before the parallel processing begins. std.debug.print("Starting work...\n", .{}); - // These curly brackets are very important, they are necessary + // These curly braces are very important, they are necessary // to enclose the area where the threads are called. - // Without these brackets, the program would not wait for the + // Without these braces, the program would not wait for the // end of the threads and they would continue to run beyond the // end of the program. { -- cgit v1.2.3