Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-01-19 07:04:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-19 07:04:51 +0400
commit53e383ff9da3636db5b1b6288ba7aea0dfaf5393 (patch)
treed46d091f8b9ea0ceeb3d6a390cd7891f66828d85 /source/tests/bl_mesh_validate.py
parent5006a39c271ae7025399a1ad28fd8dc19d50f092 (diff)
patch [#33924] Spelling Corrections
from Gavin Howard (gdh)
Diffstat (limited to 'source/tests/bl_mesh_validate.py')
-rw-r--r--source/tests/bl_mesh_validate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/tests/bl_mesh_validate.py b/source/tests/bl_mesh_validate.py
index a57a06d65e3..ac5be7d08d7 100644
--- a/source/tests/bl_mesh_validate.py
+++ b/source/tests/bl_mesh_validate.py
@@ -98,7 +98,7 @@ def test_meshes():
data.loops.add(len(m[2]))
for idx, v in enumerate(m[2]):
data.loops[idx].vertex_index = v
- # Polys.
+ # Polygons.
data.polygons.add(len(m[3]))
for idx, l in enumerate(m[3]):
data.polygons[idx].loop_start = l[0]
@@ -131,7 +131,7 @@ def test_builtins():
data.loops[l].edge_index = \
random.randrange(0, len(data.edges) * 2)
elif rnd == 3:
- # Make fun with some poly.
+ # Make fun with some polygons.
p = random.randrange(0, len(data.polygons))
if random.randint(0, 1):
data.polygons[p].loop_start = \