From 6ab9b17eb851d539ba87c969a7937fa137877e48 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sun, 14 Feb 2021 19:35:45 -0500 Subject: [PATCH] Fix Ex.19 typo (#19) Oh, look at that, issue 19 is about exercise 19. Today's lucky number is 19. Time to buy a lottery ticket. --- exercises/19_functions2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/19_functions2.zig b/exercises/19_functions2.zig index 4d195a7..99319c3 100644 --- a/exercises/19_functions2.zig +++ b/exercises/19_functions2.zig @@ -1,7 +1,7 @@ // // Now let's create a function that takes a parameter. Here's an // example that takes two parameters. As you can see, parameters -// are declared just like an other types ("name": "type"): +// are declared just like any other types ("name": "type"): // // fn myFunction( number: u8, is_lucky: bool ) { // ...