diff options
Diffstat (limited to 'include/godot_cpp/variant/rect2i.hpp')
-rw-r--r-- | include/godot_cpp/variant/rect2i.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/variant/rect2i.hpp b/include/godot_cpp/variant/rect2i.hpp index eff4958..57b0905 100644 --- a/include/godot_cpp/variant/rect2i.hpp +++ b/include/godot_cpp/variant/rect2i.hpp @@ -89,7 +89,7 @@ struct _NO_DISCARD_ Rect2i { return size.x > 0 && size.y > 0; } - // Returns the instersection between two Rect2is or an empty Rect2i if there is no intersection + // Returns the intersection between two Rect2is or an empty Rect2i if there is no intersection inline Rect2i intersection(const Rect2i &p_rect) const { Rect2i new_rect = p_rect; |