summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/19_functions2.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/19_functions2.zig')
-rw-r--r--exercises/19_functions2.zig2
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 ) {
// ...