Skip to content

Commit 47ebbeb

Browse files
authored
Merge pull request #309 from abolinsky/abolinsky-patch-documentation
Fix Documentation for Vector2 operator-=
2 parents 31111aa + 7eb0e83 commit 47ebbeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/Vector2.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class Vector2 : public ::Vector2 {
9696
}
9797

9898
/**
99-
* Add two vectors (v1 + v2)
99+
* Subtract two vectors (v1 - v2)
100100
*/
101101
Vector2& operator-=(const ::Vector2& vector2) {
102102
set(Vector2Subtract(*this, vector2));

0 commit comments

Comments
 (0)