From 671f515d37c9e6b7d2591b1282cf2bf6d4bf9c5b Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Fri, 30 Nov 2012 14:40:47 +0000 Subject: [PATCH] correct typos --- io_curve_svg/import_svg.py | 4 ++-- io_curve_svg/svg_colors.py | 2 +- io_mesh_stl/stl_utils.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py index f14a010ab..0965b26b8 100644 --- a/io_curve_svg/import_svg.py +++ b/io_curve_svg/import_svg.py @@ -87,7 +87,7 @@ def SVGParseFloat(s, i=0): token += s[i] i += 1 elif s[i].isspace() or s[i] == ',': - # Inkscape sometimes uses qeird float format with missed + # Inkscape sometimes uses weird float format with missed # fractional part after dot. Suppose zero fractional part # for this case pass @@ -790,7 +790,7 @@ class SVGPathParser: """ Calc arc paths - Copied and adoptedfrom paths_svg2obj.py scring for Blender 2.49 + Copied and adoptedfrom paths_svg2obj.py script for Blender 2.49 which is Copyright (c) jm soler juillet/novembre 2004-april 2009, """ diff --git a/io_curve_svg/svg_colors.py b/io_curve_svg/svg_colors.py index fd5e95488..6b8657edc 100644 --- a/io_curve_svg/svg_colors.py +++ b/io_curve_svg/svg_colors.py @@ -19,7 +19,7 @@ # <pep8 compliant> # -# Copied and adoptedfrom paths_svg2obj.py scring for Blender 2.49 which is +# Copied and adopted from paths_svg2obj.py script for Blender 2.49 which is # Copyright (c) jm soler juillet/novembre 2004-april 2009, # diff --git a/io_mesh_stl/stl_utils.py b/io_mesh_stl/stl_utils.py index ded7d2c6c..1d35acb1a 100644 --- a/io_mesh_stl/stl_utils.py +++ b/io_mesh_stl/stl_utils.py @@ -163,7 +163,7 @@ def _ascii_read(data): def _binary_write(filename, faces): with open(filename, 'wb') as data: # header - # we write padding at header begginning to avoid to + # we write padding at header beginning to avoid to # call len(list(faces)) which may be expensive data.write(struct.calcsize('<80sI') * b'\0') -- GitLab