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>2020-05-09 10:15:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-09 10:19:28 +0300
commitd06384aa41837b905fac94b7cd888dce6c99a3b8 (patch)
treed96b8641e0e3e6cd316990096e900497951be202 /source/blender/bmesh/tools/bmesh_intersect_edges.c
parent00e99959d3fd40da2ca4a10219705d2fb96efe70 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_intersect_edges.c')
-rw-r--r--source/blender/bmesh/tools/bmesh_intersect_edges.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/tools/bmesh_intersect_edges.c b/source/blender/bmesh/tools/bmesh_intersect_edges.c
index e2d03a65d46..3f0492aebb6 100644
--- a/source/blender/bmesh/tools/bmesh_intersect_edges.c
+++ b/source/blender/bmesh/tools/bmesh_intersect_edges.c
@@ -893,7 +893,7 @@ bool BM_mesh_intersect_edges(
if (BM_vert_pair_share_face_check(va, va_dest)) {
/* Vert par acts on the same face.
- * Although there are cases like this where the face can be splitted,
+ * Although there are cases like this where the face can be split,
* for efficiency it is better to ignore then. */
continue;
}
@@ -909,7 +909,7 @@ bool BM_mesh_intersect_edges(
if (BM_vert_pair_share_face_check(v_other, v_other_dest)) {
/* Vert par acts on the same face.
- * Although there are cases like this where the face can be splitted,
+ * Although there are cases like this where the face can be split,
* for efficiency and to avoid complications, it is better to ignore these cases.
*/
break;