From 46475b8e1164ffbfc6fe4c61ec1c6f59fa3045a8 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sun, 23 Jan 2022 22:34:56 -0600 Subject: Cleanup: Grammar: its self vs. itself --- source/blender/bmesh/tools/bmesh_decimate_collapse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/bmesh/tools') diff --git a/source/blender/bmesh/tools/bmesh_decimate_collapse.c b/source/blender/bmesh/tools/bmesh_decimate_collapse.c index e90e50ef8ff..c653b2b8007 100644 --- a/source/blender/bmesh/tools/bmesh_decimate_collapse.c +++ b/source/blender/bmesh/tools/bmesh_decimate_collapse.c @@ -847,7 +847,7 @@ BLI_INLINE int bm_edge_is_manifold_or_boundary(BMLoop *l) /* less optimized version of check below */ return (BM_edge_is_manifold(l->e) || BM_edge_is_boundary(l->e); #else - /* if the edge is a boundary it points to its self, else this must be a manifold */ + /* if the edge is a boundary it points to itself, else this must be a manifold */ return LIKELY(l) && LIKELY(l->radial_next->radial_next == l); #endif } @@ -855,7 +855,7 @@ BLI_INLINE int bm_edge_is_manifold_or_boundary(BMLoop *l) static bool bm_edge_collapse_is_degenerate_topology(BMEdge *e_first) { /* simply check that there is no overlap between faces and edges of each vert, - * (excluding the 2 faces attached to 'e' and 'e' its self) */ + * (excluding the 2 faces attached to 'e' and 'e' itself) */ BMEdge *e_iter; -- cgit v1.2.3