From 94ffd625c9c4dbe4b9e93406a0032eb53fd5a11a Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 14 Dec 2023 22:49:30 +0000 Subject: [PATCH] typo --- day-14/two.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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