diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-06-21 22:45:37 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-06-21 22:45:37 +0200 |
| commit | a463aafb91905f793d5cdb2b2675afa90f59f63f (patch) | |
| tree | b02145d24e1761c5b775d9da0b38383a3698c331 | |
| parent | d52661fd397b1a929feb996b06fa36662bb5147f (diff) | |
| parent | 11868112c54dc95023b2012bb040bd9f2de031e4 (diff) | |
Merge pull request '107: change comment "brackets" -> "braces"' (#471) from xiaolizhi/exercises:text-fix1 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/471
| -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. { |
