From 08cdf06f89b64d7af20929b8e2464bc67adc01dc Mon Sep 17 00:00:00 2001
From: Sergey Sharybin <sergey.vfx@gmail.com>
Date: Mon, 29 Oct 2018 14:49:58 +0100
Subject: [PATCH] SVG: Fix for typos

Patch provided by @cyp
---
 io_curve_svg/import_svg.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index 42191a450..00c90dc62 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()
-- 
GitLab