From 07ffae29d292c615fbc9aeca3f861e7c066ee813 Mon Sep 17 00:00:00 2001 From: JoBe <165585785+JoBeGaming@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:31:20 +0100 Subject: [PATCH] `pybricks/_common.py`: Renamed `top` in documentation of `Display.orientation` to `up`, to better reflect the state in code. See https://github.com/pybricks/pybricks-micropython/blob/master/pybricks/common/pb_type_lightmatrix.c#L59C25 for usage in the code itself. --- src/pybricks/_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybricks/_common.py b/src/pybricks/_common.py index bb98aa5..3424a48 100644 --- a/src/pybricks/_common.py +++ b/src/pybricks/_common.py @@ -828,7 +828,7 @@ def orientation(self, up: Side) -> None: 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``. """