From 6308a6671feb4effbd3fae6b3212a78ba6b15353 Mon Sep 17 00:00:00 2001 From: DigiDuncan Date: Thu, 9 Jan 2025 02:01:54 -0500 Subject: [PATCH] fix missed rectplacement --- arcade/types/box.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcade/types/box.py b/arcade/types/box.py index 6a6559aad..ffdfd7bf2 100644 --- a/arcade/types/box.py +++ b/arcade/types/box.py @@ -291,7 +291,7 @@ def union(self, other: Box) -> Box: return LRBTNF(left, right, bottom, top, near, far) def __or__(self, other: Box) -> Box: - """Shorthand for :py:meth:`rect.union(other) `. + """Shorthand for :py:meth:`Box.union(other) `. Args: other: Another :py:class:`Box` instance.