From fd9de3ff7e795fb1187f506e0600512eab5415cf Mon Sep 17 00:00:00 2001 From: Sean Kim Date: Wed, 24 Apr 2024 14:26:47 +0200 Subject: [PATCH] Cleanup: Fix function comments in BKE_mesh.hh This PR fixes the `mesh_select_*_flush` comments. Pull Request: https://projects.blender.org/blender/blender/pulls/121000 --- source/blender/blenkernel/BKE_mesh.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/blenkernel/BKE_mesh.hh b/source/blender/blenkernel/BKE_mesh.hh index 041f53227d7..afd45ba31e2 100644 --- a/source/blender/blenkernel/BKE_mesh.hh +++ b/source/blender/blenkernel/BKE_mesh.hh @@ -341,11 +341,11 @@ void mesh_hide_vert_flush(Mesh &mesh); /** Make vertex and edge visibility consistent with faces. */ void mesh_hide_face_flush(Mesh &mesh); -/** Make edge and face visibility consistent with vertices. */ +/** Make edge and face selection consistent with vertices. */ void mesh_select_vert_flush(Mesh &mesh); -/** Make vertex and face visibility consistent with edges. */ +/** Make vertex and face selection consistent with edges. */ void mesh_select_edge_flush(Mesh &mesh); -/** Make vertex and edge visibility consistent with faces. */ +/** Make vertex and edge selection consistent with faces. */ void mesh_select_face_flush(Mesh &mesh); /** Set the default name when adding a color attribute if there is no default yet. */