Slight Comment Change

This commit is contained in:
2026-02-03 18:53:19 +10:00
parent c6ee83e51a
commit 4122817fae

View File

@@ -25,7 +25,7 @@ class SlotMachine():
for icon in wheel.icons: for icon in wheel.icons:
matrix[i].append(icon) matrix[i].append(icon)
# Use Zip function to aggregate unpacked matrix (*matrix unpacks it) # Use Zip function to transpose unpacked matrix (*matrix unpacks it)
matrix = zip(*matrix) matrix = zip(*matrix)
for row in matrix: for row in matrix: