diff --git a/day-14/two.go b/day-14/two.go index b283d97..ccf1a8b 100644 --- a/day-14/two.go +++ b/day-14/two.go @@ -12,7 +12,7 @@ func cycleOnce(image img) { } // cycleMany cycles a single image for a given number of iterations -// it also caches the index of the interation for each image +// it also caches the index of the iteration for each image func cycleMany(image img, iterations int) { cache := make(map[string]int) i, start := 0, 0