aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sorensen <paulsorensen5@gmail.com>2021-11-10 11:30:37 -0500
committerGitHub <noreply@github.com>2021-11-10 11:30:37 -0500
commit8026785e0b556757bbf658c39297aa86ae898ed5 (patch)
treeaac4f5358197b83883087354918aedcee9b033b6
parent10a0cda1368f25aef0864e935b0478020c3b3bd2 (diff)
downloadziglings-8026785e0b556757bbf658c39297aa86ae898ed5.tar.gz
ziglings-8026785e0b556757bbf658c39297aa86ae898ed5.tar.bz2
ziglings-8026785e0b556757bbf658c39297aa86ae898ed5.tar.xz
ziglings-8026785e0b556757bbf658c39297aa86ae898ed5.zip
Update 034_quiz4.zig
Closes #76 By making comment more clear
-rw-r--r--exercises/034_quiz4.zig2
1 files changed, 1 insertions, 1 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;