From 7eb0e83452ce74474c6ff2e6444be6a266bf8941 Mon Sep 17 00:00:00 2001 From: Alexander Bolinsky Date: Mon, 18 Mar 2024 15:42:10 +0900 Subject: [PATCH] Fix Documentation for Vector2 operator-= --- include/Vector2.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Vector2.hpp b/include/Vector2.hpp index 5cb605aa..d1438783 100644 --- a/include/Vector2.hpp +++ b/include/Vector2.hpp @@ -96,7 +96,7 @@ class Vector2 : public ::Vector2 { } /** - * Add two vectors (v1 + v2) + * Subtract two vectors (v1 - v2) */ Vector2& operator-=(const ::Vector2& vector2) { set(Vector2Subtract(*this, vector2));