From ad8de595a45c7882f4ddeaa6e1e1c5c7b65b0d3b Mon Sep 17 00:00:00 2001 From: Georgy Trush Date: Sat, 4 Sep 2021 19:00:03 +0300 Subject: Fix exercises 058 and 081 :wrench: --- exercises/058_quiz7.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/058_quiz7.zig') diff --git a/exercises/058_quiz7.zig b/exercises/058_quiz7.zig index 7162078..d903e82 100644 --- a/exercises/058_quiz7.zig +++ b/exercises/058_quiz7.zig @@ -191,7 +191,7 @@ const TripItem = union(enum) { // The Hermit's Notebook is where all the magic happens. A notebook // entry is a Place discovered on the map along with the Path taken to // get there and the distance to reach it from the start point. If we -// find a better Path to reach a Place (lower distance), we update the +// find a better Path to reach a Place (shorter distance), we update the // entry. Entries also serve as a "todo" list which is how we keep // track of which paths to explore next. const NotebookEntry = struct { -- cgit v1.2.3-ZIG