concat.go

This commit is contained in:
2023-12-12 22:30:03 +03:00
parent 48074bb2cc
commit b646bef7b2
2 changed files with 57 additions and 1 deletions

View File

@@ -42,5 +42,5 @@ func Scale(img image.Image, scale int) image.Image {
if scale < 1 {
scale = 1
}
return rescaled{img, scale}
return rescaled{img, scale}
}