From c86d3b429eb5c23408b2e3c1c890b9306fc2f978 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 30 Jan 2025 14:17:31 +1100 Subject: [PATCH] Cleanup: spelling in comments --- scripts/startup/bl_operators/node.py | 4 ++-- source/blender/blendthumb/src/thumbnail_provider.mm | 2 +- source/blender/bmesh/operators/bmo_dissolve.cc | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/startup/bl_operators/node.py b/scripts/startup/bl_operators/node.py index 62810ddaa14..0903d83f204 100644 --- a/scripts/startup/bl_operators/node.py +++ b/scripts/startup/bl_operators/node.py @@ -454,7 +454,7 @@ class NODE_OT_viewer_shortcut_set(Operator): viewer_node = self.get_connected_viewer(fav_node) if not viewer_node: # Calling link_viewer() if a viewer node is connected will connect the next available socket to the viewer node. - # This behavior is not desired as we want to create a shortcut to the exisiting connected viewer node. + # This behavior is not desired as we want to create a shortcut to the existing connected viewer node. # Therefore link_viewer() is called only when no viewer node is connected. bpy.ops.node.link_viewer() viewer_node = self.get_connected_viewer(fav_node) @@ -494,7 +494,7 @@ class NODE_OT_viewer_shortcut_get(Operator): def execute(self, context): nodes = context.space_data.edit_tree.nodes - # Get viewer node with exisiting shortcut. + # Get viewer node with existing shortcut. viewer_node = None for n in nodes: if n.type == 'VIEWER' and n.ui_shortcut == self.viewer_index: diff --git a/source/blender/blendthumb/src/thumbnail_provider.mm b/source/blender/blendthumb/src/thumbnail_provider.mm index f3bdafc0ea9..565fc761ef2 100644 --- a/source/blender/blendthumb/src/thumbnail_provider.mm +++ b/source/blender/blendthumb/src/thumbnail_provider.mm @@ -19,7 +19,7 @@ * 1. If an app is launched, or is registered with lsregister, its plugins also get registered. * 2. When a file thumbnail in Finder or QuickLook is requested, the system looks for a plugin * that supports the file type UTI. - * 3. The plugin is launched in a sandboxed environment and should call the handler with a reply. + * 3. The plugin is launched in a sand-boxed environment and should call the handler with a reply. * * # Plugin Info.plist * The Info.plist file should be properly configured with supported content type. diff --git a/source/blender/bmesh/operators/bmo_dissolve.cc b/source/blender/bmesh/operators/bmo_dissolve.cc index 0327e1b9ae2..e5679cd649a 100644 --- a/source/blender/bmesh/operators/bmo_dissolve.cc +++ b/source/blender/bmesh/operators/bmo_dissolve.cc @@ -321,7 +321,7 @@ void bmo_dissolve_edges_exec(BMesh *bm, BMOperator *op) } } - /* Cleanup geometry. Remove any edges that are garbage collectable and that have became + /* Cleanup geometry. Remove any edges that are garbage collectible and that have became * irrelevant (no loops) because of face merges. */ BM_ITER_MESH_MUTABLE (e, e_next, &iter, bm, BM_EDGES_OF_MESH) { if ((e->l == nullptr) && BMO_edge_flag_test(bm, e, EDGE_ISGC)) { @@ -329,7 +329,7 @@ void bmo_dissolve_edges_exec(BMesh *bm, BMOperator *op) } } - /* Cleanup geometry. Remove any verts that are garbage collectable and that that have became + /* Cleanup geometry. Remove any verts that are garbage collectible and that that have became * isolated verts (no edges) because of edge dissolves. */ BM_ITER_MESH_MUTABLE (v, v_next, &iter, bm, BM_VERTS_OF_MESH) { if ((v->e == nullptr) && BMO_vert_flag_test(bm, v, VERT_ISGC)) {