Parcourir la source

Merge pull request #192 from superlogical/master

Fix spelling mistake in comment in the PolyVector2.h file
Ivan Safrin il y a 13 ans
Parent
commit
ecb9e30529
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Core/Contents/Include/PolyVector2.h

+ 1 - 1
Core/Contents/Include/PolyVector2.h

@@ -127,7 +127,7 @@ namespace Polycode {
 			
 			/**
 			* Returns the dot product with another vector.
-			* @return Dor product with the vector.
+			* @return Dot product with the vector.
 			*/			
 			inline Number dot(const Vector2 &u) const {
 				return x * u.x + y * u.y;