From 157fea7761fe48ca4a1f4db620038e2775330ca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20M=C3=BCller?= Date: Sat, 27 Sep 2025 23:20:48 +0200 Subject: [PATCH] Fix Rectangle docs --- Quadtree/Rectangle.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Quadtree/Rectangle.cs b/Quadtree/Rectangle.cs index e6c1020..4fd92a9 100644 --- a/Quadtree/Rectangle.cs +++ b/Quadtree/Rectangle.cs @@ -7,12 +7,12 @@ namespace SpatialCollections public class Rectangle { /// - /// Vector containing the lowest X and Y coordinates contained in the bounding box. + /// Vector containing the lowest X and Y coordinates contained in the rectangle. /// public Vector2 Min; /// - /// Vector containing the highest X and Y coordinates contained in the bounding box. + /// Vector containing the highest X and Y coordinates contained in the rectangle. /// public Vector2 Max;