diff options
| author | xiaolizhi <vogelwanderung@pm.me> | 2026-06-21 21:22:12 +0200 |
|---|---|---|
| committer | xiaolizhi <vogelwanderung@pm.me> | 2026-06-21 21:22:12 +0200 |
| commit | 11868112c54dc95023b2012bb040bd9f2de031e4 (patch) | |
| tree | b02145d24e1761c5b775d9da0b38383a3698c331 | |
| parent | d52661fd397b1a929feb996b06fa36662bb5147f (diff) | |
107: change comment "brackets" -> "braces"
Signed-off-by: xiaolizhi <vogelwanderung@pm.me>
| -rw-r--r-- | exercises/107_threading.zig | 4 |
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. { |
