| author | |
| committer | |
| log | 0b75a2a1b1972777350c33c27cfe720172491de6 |
| tree | 25ff0a45cbb4fdba6aec76338578decfb967b30b |
| parent | f63cd9194c81459d113a57dc7e8ce357f8029728 |
| 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 | 15 | break :blk .{ min, max }; |
| 16 | 16 | }; |
| 17 | 17 | |
| 18 | print("min = {}", .{ min }); | |
| 19 | print("max = {}", .{ max }); | |
| 18 | print("min = {}\n", .{ min }); | |
| 19 | print("max = {}\n", .{ max }); | |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | // exe=succeed |