From 95e19226c16ceb4d05ae6dea5767fbfbca1549c1 Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 27 Mar 2013 11:18:44 +0100 Subject: [PATCH] Fix typo --- src/Mod/Part/App/AppPartPy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Part/App/AppPartPy.cpp b/src/Mod/Part/App/AppPartPy.cpp index 83a9cc6b4..7af1d3c30 100644 --- a/src/Mod/Part/App/AppPartPy.cpp +++ b/src/Mod/Part/App/AppPartPy.cpp @@ -977,7 +977,7 @@ static PyObject * makePolygon(PyObject *self, PyObject *args) } if (!mkPoly.IsDone()) - Standard_Failure::Raise("Cannot create polygon because less than two vetices are given"); + Standard_Failure::Raise("Cannot create polygon because less than two vertices are given"); return new TopoShapeWirePy(new TopoShape(mkPoly.Wire())); }