From 79cbc99c5f3f0d4ffecc23e700999ebe85046233 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sun, 4 Apr 2021 18:09:25 -0400 Subject: [PATCH] Make it clearer where there's nothing to be fixed. --- exercises/058_quiz7.zig | 1 + 1 file changed, 1 insertion(+) 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.?;