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>2021-09-01 14:41:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-02 04:08:38 +0300
commitf8dd0d0dba748035706382f0c5700bb23e5a9048 (patch)
tree8af00f20a77a8ff3108cc5eb729ad93f87b30421 /source/blender/blenkernel
parent42546db49089eba5543af00ea08f8075ac98d743 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh.c b/source/blender/blenkernel/intern/mesh.c
index e3650e03c8a..bfc05c2d624 100644
--- a/source/blender/blenkernel/intern/mesh.c
+++ b/source/blender/blenkernel/intern/mesh.c
@@ -1591,7 +1591,7 @@ void BKE_mesh_transform(Mesh *me, const float mat[4][4], bool do_keys)
MVert *mvert = CustomData_duplicate_referenced_layer(&me->vdata, CD_MVERT, me->totvert);
float(*lnors)[3] = CustomData_duplicate_referenced_layer(&me->ldata, CD_NORMAL, me->totloop);
- /* If the referenced l;ayer has been re-allocated need to update pointers stored in the mesh. */
+ /* If the referenced layer has been re-allocated need to update pointers stored in the mesh. */
BKE_mesh_update_customdata_pointers(me, false);
for (i = 0; i < me->totvert; i++, mvert++) {