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:
authorCampbell Barton <ideasman42@gmail.com>2011-10-17 10:59:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-17 10:59:42 +0400
commitdfb74f84549fb0a8debbc85be457301237e8c3e3 (patch)
treeee8627a90871cee335def998ebe25253d59f3616 /io_scene_obj
parent66a538f8fb0e4126850318fcfe09099d474bbcd6 (diff)
fix spelling errors for comments
Diffstat (limited to 'io_scene_obj')
-rw-r--r--io_scene_obj/export_obj.py2
-rw-r--r--io_scene_obj/import_obj.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py
index 6d00bb42..d1b3918d 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -406,7 +406,7 @@ def write_file(filepath, objects, scene,
# UV
if faceuv:
- # incase removing some of these dont get defined.
+ # in case removing some of these dont get defined.
uv = uvkey = uv_dict = f_index = uv_index = None
uv_face_mapping = [[0, 0, 0, 0] for i in range(len(face_index_pairs))] # a bit of a waste for tri's :/
diff --git a/io_scene_obj/import_obj.py b/io_scene_obj/import_obj.py
index 1f7ab9b7..02e8dfdb 100644
--- a/io_scene_obj/import_obj.py
+++ b/io_scene_obj/import_obj.py
@@ -804,7 +804,7 @@ def get_float_func(filepath):
return float
file.close()
- # incase all vert values were ints
+ # in case all vert values were ints
return float
@@ -1021,7 +1021,7 @@ def load(operator, context, filepath,
elif line.startswith(b'curv ') or context_multi_line == b'curv':
line_split = line.split()
- curv_idx = context_nurbs[b'curv_idx'] = context_nurbs.get(b'curv_idx', []) # incase were multiline
+ curv_idx = context_nurbs[b'curv_idx'] = context_nurbs.get(b'curv_idx', []) # in case were multiline
if not context_multi_line:
context_nurbs[b'curv_range'] = float_func(line_split[1]), float_func(line_split[2])