Commit 0b75a2a1b1

LukaTD <43285559+LukaTD@users.noreply.github.com>
2025-09-10 04:31:20
langref: added missing newlines to destructuring tuples example
langref: added missing newlines to destructuring tuples example
1 parent f63cd91
Changed files (1)
doc/langref/destructuring_block.zig
@@ -15,8 +15,8 @@ pub fn main() void {
         break :blk .{ min, max };
     };
 
-    print("min = {}", .{ min });
-    print("max = {}", .{ max });
+    print("min = {}\n", .{ min });
+    print("max = {}\n", .{ max });
 }
 
 // exe=succeed