Skip to content

Commit

Permalink
Merge pull request #309 from abolinsky/abolinsky-patch-documentation
Browse files Browse the repository at this point in the history
Fix Documentation for Vector2 operator-=
  • Loading branch information
RobLoach authored Mar 18, 2024
2 parents 31111aa + 7eb0e83 commit 47ebbeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Vector2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 47ebbeb

Please sign in to comment.