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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-01 21:13:26 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-01 21:13:26 +0300
commited161459d14a31fd237cd1f65a7070113ae3300f (patch)
tree375a2763bf4fa7135aa4e64c92fccaaa335a4034 /curve_tools
parent50c493fb22869e0e08936c4b7a44624887b1de58 (diff)
Fix typos in source comments and descriptions
Patch contributed by luzpaz. Differential Revision: https://developer.blender.org/D5800
Diffstat (limited to 'curve_tools')
-rw-r--r--curve_tools/Curves.py2
-rw-r--r--curve_tools/ShowCurveResolution.py2
-rw-r--r--curve_tools/cad.py2
-rw-r--r--curve_tools/curve_remove_doubles.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/curve_tools/Curves.py b/curve_tools/Curves.py
index e2608eeb..d5608e3c 100644
--- a/curve_tools/Curves.py
+++ b/curve_tools/Curves.py
@@ -390,7 +390,7 @@ class BezierSpline:
self.segments.append(BezierSegment(self.segments[-1].bezierPoint2, spline2.segments[0].bezierPoint1))
for seg2 in spline2.segments: self.segments.append(seg2)
- self.resolution += spline2.resolution # extra segment will usually be short -- impact on resolution negligable
+ self.resolution += spline2.resolution # extra segment will usually be short -- impact on resolution negligible
self.isCyclic = False # is this ok?
diff --git a/curve_tools/ShowCurveResolution.py b/curve_tools/ShowCurveResolution.py
index 69271704..6386fe4d 100644
--- a/curve_tools/ShowCurveResolution.py
+++ b/curve_tools/ShowCurveResolution.py
@@ -18,7 +18,7 @@
#
-# LOAD MODUL #
+# LOAD MODULE #
import bpy
from bpy import *
from bpy.props import *
diff --git a/curve_tools/cad.py b/curve_tools/cad.py
index c71bd46d..288f9149 100644
--- a/curve_tools/cad.py
+++ b/curve_tools/cad.py
@@ -37,7 +37,7 @@ class Fillet(bpy.types.Operator):
radius: bpy.props.FloatProperty(name='Radius', description='Radius of the rounded corners', unit='LENGTH', min=0.0, default=0.1)
chamfer_mode: bpy.props.BoolProperty(name='Chamfer', description='Cut off sharp without rounding', default=False)
- limit_half_way: bpy.props.BoolProperty(name='Limit Half Way', description='Limits the segements to half their length in order to prevent collisions', default=False)
+ limit_half_way: bpy.props.BoolProperty(name='Limit Half Way', description='Limits the segments to half their length in order to prevent collisions', default=False)
@classmethod
def poll(cls, context):
diff --git a/curve_tools/curve_remove_doubles.py b/curve_tools/curve_remove_doubles.py
index ca26895b..373b69c9 100644
--- a/curve_tools/curve_remove_doubles.py
+++ b/curve_tools/curve_remove_doubles.py
@@ -7,7 +7,7 @@ bl_info = {
'version': (1, 1),
'blender': (2, 80, 0),
'location': 'View3D > Context menu (W/RMB) > Remove Doubles',
- 'description': 'Adds comand "Remove Doubles" for curves',
+ 'description': 'Adds command "Remove Doubles" for curves',
'category': 'Object'
}