Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-10-29 16:49:58 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-10-29 16:49:58 +0300
commit08cdf06f89b64d7af20929b8e2464bc67adc01dc (patch)
treed79557f746f80acdf7d1ae9b3f0cc7df787113df
parentd7d3233715503ecc15b8dd1973f7e73257e2cbda (diff)
SVG: Fix for typos
Patch provided by @cyp
-rw-r--r--io_curve_svg/import_svg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index 42191a45..00c90dc6 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()