Просмотр исходного кода

Make it clearer where there's nothing to be fixed.

Dave Gauer 4 лет назад
Родитель
Сommit
79cbc99c5f
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      exercises/058_quiz7.zig

+ 1 - 0
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.?;