Skip to content

Commit f931aee

Browse files
committed
comment fix
1 parent 296bacd commit f931aee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_imageload/png.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def load( # noqa: PLR0912, PLR0915, Too many branches, Too many statements
108108
bmp = bitmap(width, height, colors)
109109
mem = memoryview(bmp)
110110
for y in range(height):
111-
# Adjust for Displayio.Bitmap filler to scanline at byte boundry
111+
# Adjust for Displayio.Bitmap filler to scanline at 4-byte boundry
112112
filladj = y * ((4 - (width % 4)) % 4)
113113
dst = y * scanline + filladj
114114
src = y * (scanline + 1) + 1

0 commit comments

Comments
 (0)