From 0b75a2a1b1972777350c33c27cfe720172491de6 Mon Sep 17 00:00:00 2001 From: LukaTD <43285559+LukaTD@users.noreply.github.com> Date: Wed, 10 Sep 2025 04:31:20 +0200 Subject: [PATCH] langref: added missing newlines to destructuring tuples example langref: added missing newlines to destructuring tuples example --- doc/langref/destructuring_block.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/langref/destructuring_block.zig b/doc/langref/destructuring_block.zig index 7eec318796..4aae87381b 100644 --- a/doc/langref/destructuring_block.zig +++ b/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