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-10 04:41:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-10 04:49:46 +0300
commit3dd460aa7fbb7021130b58f7809cfda5b69df201 (patch)
treea0f32ca3adcb547b7b7c32df27443e3bb52a7e29 /source/blender/editors/mesh/meshtools.c
parenta0d3b60015e890d3c383f9c6fd23dbed2fc71d70 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/mesh/meshtools.c')
-rw-r--r--source/blender/editors/mesh/meshtools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c
index f759ec4d855..4d84db9b35b 100644
--- a/source/blender/editors/mesh/meshtools.c
+++ b/source/blender/editors/mesh/meshtools.c
@@ -313,8 +313,8 @@ static void mesh_join_offset_face_sets_ID(const Mesh *mesh, int *face_set_offset
int max_face_set = 0;
for (int f = 0; f < mesh->totpoly; f++) {
- /* As face sets enconde the visibility in the integer sign, the offset needs to be added or
- * substracted depending on the initial sign of the integer to get the new ID. */
+ /* As face sets encode the visibility in the integer sign, the offset needs to be added or
+ * subtracted depending on the initial sign of the integer to get the new ID. */
if (abs(face_sets[f]) <= *face_set_offset) {
if (face_sets[f] > 0) {
face_sets[f] += *face_set_offset;