diff --git a/src/modules/math/MathModule.cpp b/src/modules/math/MathModule.cpp index de145ae2c..bbac3ef3a 100644 --- a/src/modules/math/MathModule.cpp +++ b/src/modules/math/MathModule.cpp @@ -104,7 +104,7 @@ BezierCurve *Math::newBezierCurve(const vector &points) vector Math::triangulate(const vector &polygon) { if (polygon.size() < 3) - throw love::Exception("Not a ploygon"); + throw love::Exception("Not a polygon"); else if (polygon.size() == 3) return vector(1, Triangle(polygon[0], polygon[1], polygon[2]));