authorgravatar for mohellebiabdessalem@gmail.comabdessalem <mohellebiabdessalem@gmail.com> 2026-05-31 09:39:57+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-06-11 05:37:18+02:00
log340cf85faadbac0c51e072f588b70bd77f7c6c7b
tree9320288b8afea50b8edf2d7fa1705964463fdb7c
parent8ac3ad48c8eeccf400ab8b2014c958fc0256f5b7

add missing newline to destructuring mixed example


1 files changed, 1 insertions(+), 1 deletions(-)

doc/langref/destructuring_mixed.zig+1-1
......@@ -15,7 +15,7 @@ pub fn main() void {
1515 // You can use _ to throw away unwanted values.
1616 _, x, _ = tuple;
1717
18 print("x = {}", .{x});
18 print("x = {}\n", .{x});
1919}
2020
2121// exe=succeed