summaryrefslogtreecommitdiff
path: root/exercises/107_threading.zig
diff options
context:
space:
mode:
authorxiaolizhi <vogelwanderung@pm.me>2026-06-21 21:22:12 +0200
committerxiaolizhi <vogelwanderung@pm.me>2026-06-21 21:22:12 +0200
commit11868112c54dc95023b2012bb040bd9f2de031e4 (patch)
treeb02145d24e1761c5b775d9da0b38383a3698c331 /exercises/107_threading.zig
parentd52661fd397b1a929feb996b06fa36662bb5147f (diff)
107: change comment "brackets" -> "braces"
Signed-off-by: xiaolizhi <vogelwanderung@pm.me>
Diffstat (limited to 'exercises/107_threading.zig')
-rw-r--r--exercises/107_threading.zig4
1 files 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.
{