From 621a0dbd287ead4d766e40cab64d41726bdd014b Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 15 Dec 2023 01:04:22 +0000 Subject: [PATCH] fix docstring --- 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 3cc4051..06d7d8b 100644 --- a/day-14/two.go +++ b/day-14/two.go @@ -2,7 +2,7 @@ package main const CYCLES = 1000000000 -// cycleOnce transposes and rolls a single image once +// cycleOnce transposes and rolls a single image four times (N,W,S,E) func cycleOnce(image img) { for i := 0; i < 4; i++ { for i, line := range image.transposed() {