diff options
Diffstat (limited to 'exercises')
| -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. { |
