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 <brecht@blender.org>2022-06-30 18:20:39 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-06-30 18:21:18 +0300
commit6d7056ab6e342fba9a62ecfa2efd132ffe2e403a (patch)
tree5ce72983d37f5a65be515cf999cf0d9a30370f4e /object_fracture_cell
parent870f9775d7cd57b2d51c6c964842b96e5ba542c0 (diff)
Cleanup: fix various typos
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D15328
Diffstat (limited to 'object_fracture_cell')
-rw-r--r--object_fracture_cell/__init__.py2
-rw-r--r--object_fracture_cell/fracture_cell_setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/object_fracture_cell/__init__.py b/object_fracture_cell/__init__.py
index e9f70a44..543f86f1 100644
--- a/object_fracture_cell/__init__.py
+++ b/object_fracture_cell/__init__.py
@@ -482,7 +482,7 @@ class FractureCell(Operator):
rowsub.prop(self, "use_data_match")
rowsub = col.row()
- # on same row for even layout but infact are not all that related
+ # on same row for even layout but in fact are not all that related
rowsub.prop(self, "material_index")
rowsub.prop(self, "use_interior_vgroup")
diff --git a/object_fracture_cell/fracture_cell_setup.py b/object_fracture_cell/fracture_cell_setup.py
index 8171e44e..2e735495 100644
--- a/object_fracture_cell/fracture_cell_setup.py
+++ b/object_fracture_cell/fracture_cell_setup.py
@@ -145,7 +145,7 @@ def cell_fracture_objects(
random.shuffle(points)
points[source_limit:] = []
- # saddly we cant be sure there are no doubles
+ # sadly we can't be sure there are no doubles
from mathutils import Vector
to_tuple = Vector.to_tuple
points = list({to_tuple(p, 4): p for p in points}.values())