From bc402e8eb109972a0a6f05a9a1cdc4a72149efeb Mon Sep 17 00:00:00 2001 From: Paul Sorensen Date: Wed, 10 Nov 2021 11:30:37 -0500 Subject: [PATCH 1/2] Update 034_quiz4.zig Closes #76 By making comment more clear --- exercises/034_quiz4.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From 8a0e650d136bc9157fea93bec294df69fa8fe119 Mon Sep 17 00:00:00 2001 From: Arnavion Date: Wed, 1 Dec 2021 02:44:49 -0800 Subject: [PATCH 2/2] Fix typo in comment in 058_quiz7.zig --- exercises/058_quiz7.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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! *