| author | |
| committer | |
| log | 38185ee10f6c09194cda304a92436f63c427be2a |
| tree | fd9c104c472b3c924127d15c09749589bf44bde8 |
| parent | f06c3d8be7cad0c082d707197382d7e704c06aa7 |
| signature |
langref: added missing newlines to destructuring tuples example1 files changed, 2 insertions(+), 2 deletions(-)
doc/langref/destructuring_block.zig+2-2| ... | @@ -15,8 +15,8 @@ pub fn main() void { | ... | @@ -15,8 +15,8 @@ pub fn main() void { |
| 15 | break :blk .{ min, max }; | 15 | break :blk .{ min, max }; |
| 16 | }; | 16 | }; |
| 17 | 17 | ||
| 18 | print("min = {}", .{ min }); | 18 | print("min = {}\n", .{ min }); |
| 19 | print("max = {}", .{ max }); | 19 | print("max = {}\n", .{ max }); |
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | // exe=succeed | 22 | // exe=succeed |