aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-12-20 14:44:32 -0500
committerDave Gauer <dave@ratfactor.com>2021-12-20 14:44:32 -0500
commitb793c0bcc82fb4e155f58cd6c921daa40c760bf4 (patch)
tree56de15db2871cd461dc07496b4c22eadbd3f9d9c /exercises
parent515a5188f4fc57f368cf3ddd8c0451305543fcf3 (diff)
parent7e6bf6bb30b2b3e8c1f9d6601f5de40c69de34eb (diff)
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises')
-rw-r--r--exercises/034_quiz4.zig2
-rw-r--r--exercises/058_quiz7.zig2
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/034_quiz4.zig b/exercises/034_quiz4.zig
index 6b0e3fc..2d843f2 100644
--- a/exercises/034_quiz4.zig
+++ b/exercises/034_quiz4.zig
@@ -17,7 +17,7 @@ pub fn main() void {
try stdout.print("my_num={}\n", .{my_num});
}
-// Just don't modify this function. It's "perfect" the way it is. :-)
+// This function is obviously weird and non-functional. But you will not be changing it for this quiz.
fn getNumber() NumError!u32 {
if (false) return NumError.IllegalNumber;
return 42;
diff --git a/exercises/058_quiz7.zig b/exercises/058_quiz7.zig
index dcff65a..0d5bcaa 100644
--- a/exercises/058_quiz7.zig
+++ b/exercises/058_quiz7.zig
@@ -31,7 +31,7 @@
// *************************************************************
// * A NOTE ABOUT THIS EXERCISE *
// * *
-// * You do NOT have to read an understand every bit of this *
+// * You do NOT have to read and understand every bit of this *
// * program. This is a very big example. Feel free to skim *
// * through it and then just focus on the few parts that are *
// * actually broken! *