From 43e3a33082586982e0daa7f00df11df7dc1a3837 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 24 Jan 2022 14:29:19 +1100 Subject: Cleanup: spelling in comments --- source/blender/python/mathutils/mathutils_geometry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python') diff --git a/source/blender/python/mathutils/mathutils_geometry.c b/source/blender/python/mathutils/mathutils_geometry.c index d47b59d0c76..b8244efbee2 100644 --- a/source/blender/python/mathutils/mathutils_geometry.c +++ b/source/blender/python/mathutils/mathutils_geometry.c @@ -1236,7 +1236,7 @@ static PyObject *M_Geometry_tessellate_polygon(PyObject *UNUSED(self), PyObject polyLine = PySequence_GetItem(polyLineSeq, i); if (!PySequence_Check(polyLine)) { BKE_displist_free(&dispbase); - Py_XDECREF(polyLine); /* may be null so use Py_XDECREF*/ + Py_XDECREF(polyLine); /* May be null so use #Py_XDECREF. */ PyErr_SetString(PyExc_TypeError, "One or more of the polylines is not a sequence of mathutils.Vector's"); return NULL; -- cgit v1.2.3