diff --git a/source/blender/editors/transform/transform_convert_mesh.cc b/source/blender/editors/transform/transform_convert_mesh.cc index b105c967a9a..d239384b848 100644 --- a/source/blender/editors/transform/transform_convert_mesh.cc +++ b/source/blender/editors/transform/transform_convert_mesh.cc @@ -1718,7 +1718,7 @@ static void createTransEditVerts(bContext * /*C*/, TransInfo *t) /* WORKAROUND: The transform operators rely on looptris being up-to-date. * However, this is not always the case, especially when called from scripts. * If this happens, to prevent update issues, make sure the size of #BMEditMesh::looptris - * arrays aligns with the number lootris to update. */ + * arrays aligns with the number looptris to update. */ const bool looptri_is_dirty = em->tottri != poly_to_tri_count(bm->totface, bm->totloop); if (looptri_is_dirty) { BKE_editmesh_looptris_calc(em); diff --git a/source/blender/gpu/shaders/opengl/glsl_shader_defines.glsl b/source/blender/gpu/shaders/opengl/glsl_shader_defines.glsl index 151a9fa913b..14755066c5a 100644 --- a/source/blender/gpu/shaders/opengl/glsl_shader_defines.glsl +++ b/source/blender/gpu/shaders/opengl/glsl_shader_defines.glsl @@ -3,7 +3,7 @@ * SPDX-License-Identifier: GPL-2.0-or-later */ /** Type aliases. */ -/** IMPORTANT: Be warry of size and alignment matching for types that are present +/** IMPORTANT: Be wary of size and alignment matching for types that are present * in C++ shared code. */ /* Boolean in GLSL are 32bit in interface structs. */ diff --git a/source/blender/makesrna/intern/rna_ID.cc b/source/blender/makesrna/intern/rna_ID.cc index 4567a915ecf..624e87d1056 100644 --- a/source/blender/makesrna/intern/rna_ID.cc +++ b/source/blender/makesrna/intern/rna_ID.cc @@ -1060,7 +1060,7 @@ static void rna_ID_update_tag(ID *id, Main *bmain, ReportList *reports, int flag allow_flag = OB_RECALC_ALL | PSYS_RECALC; break; # endif - case ID_AC: /* Fallthrough. */ + case ID_AC: /* Fall-through. */ case ID_AN: allow_flag = ID_RECALC_ANIMATION; break;