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:
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;