diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-02-14 19:35:45 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-02-14 19:35:45 -0500 |
commit | e4a5716c71f4cdf9837c8e059aa43080748f4650 (patch) | |
tree | 3ce919d35ef432762d5c1c8b61a40f03a1bef8ab /exercises | |
parent | 216c01318e7666a17bcab3445ba037da867bfd87 (diff) | |
download | ziglings-e4a5716c71f4cdf9837c8e059aa43080748f4650.tar.gz ziglings-e4a5716c71f4cdf9837c8e059aa43080748f4650.tar.bz2 ziglings-e4a5716c71f4cdf9837c8e059aa43080748f4650.tar.xz ziglings-e4a5716c71f4cdf9837c8e059aa43080748f4650.zip |
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.
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/19_functions2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) { // ... |