From 6ba5bf31dd5dbf34f571fb18da819d3c04bf5f39 Mon Sep 17 00:00:00 2001
From: smix8 <52464204+smix8@users.noreply.github.com>
Date: Thu, 24 Apr 2025 01:12:59 +0200
Subject: [PATCH] Remove AStar2D/3D comments on reserve_space() capacity needs
Removes AStar2D/3D comments of reserve_space() new capacity needing to be greater or equal than old capacity.
---
doc/classes/AStar2D.xml | 2 +-
doc/classes/AStar3D.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/classes/AStar2D.xml b/doc/classes/AStar2D.xml
index 044e1206e9a..28c01486628 100644
--- a/doc/classes/AStar2D.xml
+++ b/doc/classes/AStar2D.xml
@@ -278,7 +278,7 @@
- Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid. The new capacity must be greater or equal to the old capacity.
+ Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid.
diff --git a/doc/classes/AStar3D.xml b/doc/classes/AStar3D.xml
index 31ee6d8e3c4..46a1fdc885b 100644
--- a/doc/classes/AStar3D.xml
+++ b/doc/classes/AStar3D.xml
@@ -318,7 +318,7 @@
- Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid. New capacity must be greater or equals to old capacity.
+ Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid.