summaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/001_hello.zig2
-rw-r--r--exercises/072_comptime7.zig2
-rw-r--r--exercises/076_sentinels.zig2
3 files changed, 3 insertions, 3 deletions
diff --git a/exercises/001_hello.zig b/exercises/001_hello.zig
index 9534b60..2d95a10 100644
--- a/exercises/001_hello.zig
+++ b/exercises/001_hello.zig
@@ -11,7 +11,7 @@
// ...
// }
//
-// Perhaps knowing this well help solve the errors we're getting
+// Perhaps knowing this will help solve the errors we're getting
// with this little program?
//
const std = @import("std");
diff --git a/exercises/072_comptime7.zig b/exercises/072_comptime7.zig
index 147b935..9bc30fb 100644
--- a/exercises/072_comptime7.zig
+++ b/exercises/072_comptime7.zig
@@ -1,6 +1,6 @@
//
// There is also an 'inline while'. Just like 'inline for', it
-// loops at compile time, allowing you do all sorts of
+// loops at compile time, allowing you to do all sorts of
// interesting things not possible at runtime. See if you can
// figure out what this rather bonkers example prints:
//
diff --git a/exercises/076_sentinels.zig b/exercises/076_sentinels.zig
index 6f7abae..1af59da 100644
--- a/exercises/076_sentinels.zig
+++ b/exercises/076_sentinels.zig
@@ -69,7 +69,7 @@ pub fn main() void {
}
// Here's our generic sequence printing function. It's nearly
-// complete, but there are a couple missing bits. Please fix
+// complete, but there are a couple of missing bits. Please fix
// them!
fn printSequence(my_seq: anytype) void {
const my_typeinfo = @typeInfo(@TypeOf(my_seq));