[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4021] trunk/py/scripts/addons: correct typos

Campbell Barton ideasman42 at gmail.com
Fri Nov 30 15:40:47 CET 2012


Revision: 4021
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4021
Author:   campbellbarton
Date:     2012-11-30 14:40:47 +0000 (Fri, 30 Nov 2012)
Log Message:
-----------
correct typos

Modified Paths:
--------------
    trunk/py/scripts/addons/io_curve_svg/import_svg.py
    trunk/py/scripts/addons/io_curve_svg/svg_colors.py
    trunk/py/scripts/addons/io_mesh_stl/stl_utils.py

Modified: trunk/py/scripts/addons/io_curve_svg/import_svg.py
===================================================================
--- trunk/py/scripts/addons/io_curve_svg/import_svg.py	2012-11-30 08:28:03 UTC (rev 4020)
+++ trunk/py/scripts/addons/io_curve_svg/import_svg.py	2012-11-30 14:40:47 UTC (rev 4021)
@@ -87,7 +87,7 @@
                 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 @@
         """
         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,
         """
 

Modified: trunk/py/scripts/addons/io_curve_svg/svg_colors.py
===================================================================
--- trunk/py/scripts/addons/io_curve_svg/svg_colors.py	2012-11-30 08:28:03 UTC (rev 4020)
+++ trunk/py/scripts/addons/io_curve_svg/svg_colors.py	2012-11-30 14:40:47 UTC (rev 4021)
@@ -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,
 #
 

Modified: trunk/py/scripts/addons/io_mesh_stl/stl_utils.py
===================================================================
--- trunk/py/scripts/addons/io_mesh_stl/stl_utils.py	2012-11-30 08:28:03 UTC (rev 4020)
+++ trunk/py/scripts/addons/io_mesh_stl/stl_utils.py	2012-11-30 14:40:47 UTC (rev 4021)
@@ -163,7 +163,7 @@
 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')
 



More information about the Bf-extensions-cvs mailing list