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-07-16 03:58:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-16 04:09:39 +0300
commita3d90337b84764330c1ada680465af0225bd9a37 (patch)
tree26383b9e1722939035c37f3f96fbf0e77849d733 /source/blender/editors/mesh/editmesh_utils.c
parentd11a2dfe712e917601ad60f82b3847532d4cacc7 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/mesh/editmesh_utils.c')
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index 0cc4dcef442..2188f758dc7 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -805,7 +805,7 @@ UvElementMap *BM_uv_element_map_create(BMesh *bm,
sub_v2_v2v2(uvdiff, uv2, uv);
/* Check if the uv loops share the same selection state (if not, they are not connected as
- * they have been ripped or other edit commands have seperated them). */
+ * they have been ripped or other edit commands have separated them). */
bool connected = uv_vert_sel == uv2_vert_sel && fabsf(uvdiff[0]) < STD_UV_CONNECT_LIMIT &&
fabsf(uvdiff[1]) < STD_UV_CONNECT_LIMIT;