fix docstring

This commit is contained in:
onyx-and-iris 2023-12-15 01:04:22 +00:00
parent eab63b0b36
commit 621a0dbd28

View File

@ -2,7 +2,7 @@ package main
const CYCLES = 1000000000 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) { func cycleOnce(image img) {
for i := 0; i < 4; i++ { for i := 0; i < 4; i++ {
for i, line := range image.transposed() { for i, line := range image.transposed() {