pybricks._common: Fix parameter name in LightMatrix.orientation().

The parameter `up` was named `top` here, which does not reflect the state of the current code.

See https://github.com/pybricks/pybricks-micropython/blob/master/pybricks/common/pb_type_lightmatrix.c#L59C25 for usage in the code itself.
This commit is contained in:
JoBe
2026-03-29 17:41:34 -05:00
committed by GitHub
parent 32f974e7e5
commit c615ccf986
+1 -1
View File
@@ -828,7 +828,7 @@ class LightMatrix:
contents remain unchanged.
Arguments:
top (Side): Which side of the light matrix display is "up" in your
up (Side): Which side of the light matrix display is "up" in your
design. Choose ``Side.TOP``, ``Side.LEFT``, ``Side.RIGHT``,
or ``Side.BOTTOM``.
"""