[Bf-extensions-cvs] [08cdf06f] master: SVG: Fix for typos

Sergey Sharybin noreply at git.blender.org
Mon Oct 29 14:50:31 CET 2018


Commit: 08cdf06f89b64d7af20929b8e2464bc67adc01dc
Author: Sergey Sharybin
Date:   Mon Oct 29 14:49:58 2018 +0100
Branches: master
https://developer.blender.org/rBA08cdf06f89b64d7af20929b8e2464bc67adc01dc

SVG: Fix for typos

Patch provided by @cyp

===================================================================

M	io_curve_svg/import_svg.py

===================================================================

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()



More information about the Bf-extensions-cvs mailing list