fix by golint

This commit is contained in:
Konstantin8105 2022-11-26 21:02:24 +03:00
parent 5b3c524e0a
commit 174a597b39
3 changed files with 4 additions and 9 deletions

View file

@ -60,7 +60,7 @@ func Vector2Negate(v Vector2) Vector2 {
return NewVector2(-v.X, -v.Y)
}
// Vector2Divide - Divide vector by vector
// Vector2DivideV - Divide vector by vector
func Vector2DivideV(v1, v2 Vector2) Vector2 {
return NewVector2(v1.X/v2.X, v1.Y/v2.Y)
}