Fix typos on code using codespell

This commit is contained in:
Alexandre Avenel
2018-05-13 16:35:03 +02:00
parent 2998830d4a
commit 2879e0d6ef
41 changed files with 71 additions and 71 deletions

View File

@@ -118,7 +118,7 @@ bool areVerticesEqual(const Vertex &lhs, const Vertex &rhs, bool complex)
// Squared because we check against squared length of the vector difference
static const float squareEpsilon = epsilon * epsilon;
// Square compare is useful for animeshes vertexes compare
// Square compare is useful for animeshes vertices compare
if ((lhs.position - rhs.position).SquareLength() > squareEpsilon) {
return false;
}