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
This commit is contained in:
Chris Boesch
2026-06-21 22:45:37 +02:00
+2 -2
View File
@@ -74,9 +74,9 @@ pub fn main() !void {
// before the parallel processing begins. // before the parallel processing begins.
std.debug.print("Starting work...\n", .{}); 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. // 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 threads and they would continue to run beyond the
// end of the program. // end of the program.
{ {