diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-08-24 13:40:04 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-08-24 13:40:04 +0200 |
| commit | 5b3b0eb26bca1a62d8a1734ad603916f33127bb3 (patch) | |
| tree | 7025c494c665c6c03244c6859ced3c07f54831f9 | |
| parent | 1407c7fb91d7a587e053de23ea640d5f6b0b2951 (diff) | |
| parent | 0661d4fd48d68aaf1b1fe8275d4f56dad32d8ae2 (diff) | |
Merge pull request '[Exercise 019] fix: typo in example function, missing return type' (#290) from imomaliev/ziglings:chore/fix-019-function-description into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/290
| -rw-r--r-- | exercises/019_functions2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/019_functions2.zig b/exercises/019_functions2.zig index a527ae2..5a76c7b 100644 --- a/exercises/019_functions2.zig +++ b/exercises/019_functions2.zig @@ -3,7 +3,7 @@ // example that takes two parameters. As you can see, parameters // are declared just like any other types ("name": "type"): // -// fn myFunction(number: u8, is_lucky: bool) { +// fn myFunction(number: u8, is_lucky: bool) void { // ... // } // |
