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:
authorHarley Acheson <harley.acheson@gmail.com>2020-10-19 19:40:02 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-19 19:47:19 +0300
commit3d26cd01b9ba6381eb165e11536345ae652dfb41 (patch)
tree73e7fb4585e675c0e2090da86a2b42ef94dfd3d7 /source/blender/bmesh/tools
parent4fb67ae8094c62064b46f33a3ac04d34e9b81e93 (diff)
Spelling: Apart Versus A Part
Corrects incorrect usages of the fragment 'apart of' when 'a part of' was required. Differential Revision: https://developer.blender.org/D9245 Reviewed by Campbell Barton
Diffstat (limited to 'source/blender/bmesh/tools')
-rw-r--r--source/blender/bmesh/tools/bmesh_beautify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_beautify.c b/source/blender/bmesh/tools/bmesh_beautify.c
index a25e4666a22..2d9b35697ff 100644
--- a/source/blender/bmesh/tools/bmesh_beautify.c
+++ b/source/blender/bmesh/tools/bmesh_beautify.c
@@ -119,7 +119,7 @@ static void erot_state_ex(const BMEdge *e, int v_index[2], int f_index[2])
EDGE_ORD(v_index[0], v_index[1]);
/* verts of each of the 2 faces attached to this edge
- * (that are not apart of this edge) */
+ * (that are not a part of this edge) */
f_index[0] = BM_elem_index_get(e->l->prev->v);
f_index[1] = BM_elem_index_get(e->l->radial_next->prev->v);
EDGE_ORD(f_index[0], f_index[1]);