From 219bb3884b1f1413a048e7eb66c8dc612de6edc3 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 15 Dec 2023 01:16:30 +0000 Subject: [PATCH] reword docstring. --- day-14/one.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day-14/one.go b/day-14/one.go index d93edc5..1dc7911 100644 --- a/day-14/one.go +++ b/day-14/one.go @@ -47,7 +47,7 @@ func rollRight(line string) string { return line } -// one returns the load of all boulders after a single image cycle +// one returns the load of all boulders after a single image transposition+roll func one(lines []string) int { image := newImg(len(lines)) copy(image.raw, lines)