diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-04 18:09:25 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-04 18:09:25 -0400 |
commit | 412afe8c38ce25a31e0d6db13b09eb4ebb20e683 (patch) | |
tree | 3f88eae64088c1f9f2ea0302e75591fd4fac6b76 | |
parent | 20e5bb2b1933e3b2430a12f46f7b542e8f606617 (diff) | |
download | ziglings-412afe8c38ce25a31e0d6db13b09eb4ebb20e683.tar.gz ziglings-412afe8c38ce25a31e0d6db13b09eb4ebb20e683.tar.bz2 ziglings-412afe8c38ce25a31e0d6db13b09eb4ebb20e683.tar.xz ziglings-412afe8c38ce25a31e0d6db13b09eb4ebb20e683.zip |
Make it clearer where there's nothing to be fixed.
-rw-r--r-- | exercises/058_quiz7.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/058_quiz7.zig b/exercises/058_quiz7.zig index bbbe1a0..e567d5a 100644 --- a/exercises/058_quiz7.zig +++ b/exercises/058_quiz7.zig @@ -336,6 +336,7 @@ const HermitsNotebook = struct { // Place, something has gone horribly wrong with our // program! (This really shouldn't ever happen. Have you // checked for grues?) + // Note: you do not need to fix anything here. const previous_entry = self.getEntry(current_entry.coming_from.?); if (previous_entry == null) return TripError.EatenByAGrue; current_entry = previous_entry.?; |