From 2918a3a2a374d9ad98923e9f6824534d7872c83f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Jun 2022 21:22:11 +1000 Subject: Cleanup: spelling in comments, minor formatting tweaks --- source/blender/bmesh/intern/bmesh_edgeloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/bmesh') diff --git a/source/blender/bmesh/intern/bmesh_edgeloop.c b/source/blender/bmesh/intern/bmesh_edgeloop.c index ee8c22df630..4391a6a92d7 100644 --- a/source/blender/bmesh/intern/bmesh_edgeloop.c +++ b/source/blender/bmesh/intern/bmesh_edgeloop.c @@ -460,7 +460,7 @@ void BM_mesh_edgeloops_calc_order(BMesh *UNUSED(bm), ListBase *eloops, const boo for (el_store = eloops->first; el_store; el_store = el_store->next) { float len_sq; if (use_normals) { - /* scale the length by how close the loops are to pointing at eachother */ + /* Scale the length by how close the loops are to pointing at each other. */ float dir[3]; sub_v3_v3v3(dir, co, el_store->co); len_sq = normalize_v3(dir); -- cgit v1.2.3