diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py index 42191a450127996691ec51141dc98d7963df3bbb..00c90dc62a633943702f0aaf84f006a9662ba924 100644 --- a/io_curve_svg/import_svg.py +++ b/io_curve_svg/import_svg.py @@ -408,7 +408,7 @@ SVGTransforms = {'translate': SVGTransformTranslate, def SVGParseStyles(node, context): """ Parse node to get different styles for displaying geometries - (materilas, filling flags, etc..) + (materials, filling flags, etc..) """ styles = SVGEmptyStyles.copy() @@ -747,7 +747,7 @@ class SVGPathParser: def _pathCurveToCS(self, code): """ - Cubic BEZIER CurveTo path command + Cubic BEZIER CurveTo path command """ c = code.lower() @@ -784,7 +784,7 @@ class SVGPathParser: def _pathCurveToQT(self, code): """ - Qyadracic BEZIER CurveTo path command + Quadratic BEZIER CurveTo path command """ c = code.lower()