add docstring

This commit is contained in:
onyx-and-iris 2023-12-16 00:23:25 +00:00
parent 7faa19e159
commit e5a75872fe

View File

@ -16,6 +16,7 @@ func newImg() img {
return img{raw: make([]string, 0)}
}
// transposed rotates an image rightwards ninety degrees
func (i img) transposed() []string {
transposed := []string{}