From df5366f5966bbb53dd2670f7cc58b99b43d7e85b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 1 Oct 2025 23:22:42 +0000 Subject: [PATCH] Cleanup: spelling, duplicate terms --- scripts/modules/bpy_extras/anim_utils.py | 2 +- source/blender/nodes/geometry/nodes/node_geo_join_bundle.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/modules/bpy_extras/anim_utils.py b/scripts/modules/bpy_extras/anim_utils.py index e5de54fe94b..eab32d16660 100644 --- a/scripts/modules/bpy_extras/anim_utils.py +++ b/scripts/modules/bpy_extras/anim_utils.py @@ -97,7 +97,7 @@ def action_get_channelbag_for_slot(action: Action | None, slot: ActionSlot | Non def action_ensure_channelbag_for_slot(action: Action, slot: ActionSlot) -> ActionChannelbag: - """Ensure a layer and a keyframe strip exists, then ensure that that strip has a channelbag for the slot.""" + """Ensure a layer and a keyframe strip exists, then ensure that strip has a channelbag for the slot.""" try: layer = action.layers[0] diff --git a/source/blender/nodes/geometry/nodes/node_geo_join_bundle.cc b/source/blender/nodes/geometry/nodes/node_geo_join_bundle.cc index 5c8e2f03b43..e36ba419970 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_join_bundle.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_join_bundle.cc @@ -16,7 +16,7 @@ static void node_declare(NodeDeclarationBuilder &b) b.allow_any_socket_order(); b.add_input("Bundle").multi_input().description( "Bundles to join together on the top level for each bundle. When there are duplicates, only " - "the first occurence is used"); + "the first occurrence is used"); b.add_output("Bundle").align_with_previous(); }