Skip to content
Snippets Groups Projects
Commit 08cdf06f authored by Sergey Sharybin's avatar Sergey Sharybin
Browse files

SVG: Fix for typos

Patch provided by @cyp
parent d7d32337
No related branches found
No related tags found
No related merge requests found
...@@ -408,7 +408,7 @@ SVGTransforms = {'translate': SVGTransformTranslate, ...@@ -408,7 +408,7 @@ SVGTransforms = {'translate': SVGTransformTranslate,
def SVGParseStyles(node, context): def SVGParseStyles(node, context):
""" """
Parse node to get different styles for displaying geometries Parse node to get different styles for displaying geometries
(materilas, filling flags, etc..) (materials, filling flags, etc..)
""" """
styles = SVGEmptyStyles.copy() styles = SVGEmptyStyles.copy()
...@@ -747,7 +747,7 @@ class SVGPathParser: ...@@ -747,7 +747,7 @@ class SVGPathParser:
def _pathCurveToCS(self, code): def _pathCurveToCS(self, code):
""" """
Cubic BEZIER CurveTo path command Cubic BEZIER CurveTo path command
""" """
c = code.lower() c = code.lower()
...@@ -784,7 +784,7 @@ class SVGPathParser: ...@@ -784,7 +784,7 @@ class SVGPathParser:
def _pathCurveToQT(self, code): def _pathCurveToQT(self, code):
""" """
Qyadracic BEZIER CurveTo path command Quadratic BEZIER CurveTo path command
""" """
c = code.lower() c = code.lower()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment