From 43e3a33082586982e0daa7f00df11df7dc1a3837 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 24 Jan 2022 14:29:19 +1100 Subject: Cleanup: spelling in comments --- source/blender/bmesh/intern/bmesh_mesh_convert.cc | 4 ++-- source/blender/bmesh/intern/bmesh_query.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/bmesh') diff --git a/source/blender/bmesh/intern/bmesh_mesh_convert.cc b/source/blender/bmesh/intern/bmesh_mesh_convert.cc index 0b2bdb03dd2..72d105a7198 100644 --- a/source/blender/bmesh/intern/bmesh_mesh_convert.cc +++ b/source/blender/bmesh/intern/bmesh_mesh_convert.cc @@ -591,8 +591,8 @@ BLI_INLINE void bmesh_quick_edgedraw_flag(MEdge *med, BMEdge *e) { /* This is a cheap way to set the edge draw, its not precise and will * pick the first 2 faces an edge uses. - * The dot comparison is a little arbitrary, but set so that a 5 subd - * IcoSphere won't vanish but subd 6 will (as with pre-bmesh Blender). */ + * The dot comparison is a little arbitrary, but set so that a 5 subdivisions + * ico-sphere won't vanish but 6 subdivisions will (as with pre-bmesh Blender). */ if (/* (med->flag & ME_EDGEDRAW) && */ /* Assume to be true. */ (e->l && (e->l != e->l->radial_next)) && diff --git a/source/blender/bmesh/intern/bmesh_query.h b/source/blender/bmesh/intern/bmesh_query.h index 63ce95a19d3..841549945ca 100644 --- a/source/blender/bmesh/intern/bmesh_query.h +++ b/source/blender/bmesh/intern/bmesh_query.h @@ -561,7 +561,7 @@ BMFace *BM_face_find_double(BMFace *f) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); * many overlapping faces. * * An example of how this is used: when 2 tri's are selected that share an edge, - * pressing Fkey would make a new overlapping quad (without a check like this) + * pressing F-key would make a new overlapping quad (without a check like this) * * \a earr and \a varr can be in any order, however they _must_ form a closed loop. */ -- cgit v1.2.3