Cleanup: spelling, duplicate terms

This commit is contained in:
Campbell Barton
2025-10-01 23:22:42 +00:00
parent b938800ba6
commit df5366f596
2 changed files with 2 additions and 2 deletions

View File

@@ -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]

View File

@@ -16,7 +16,7 @@ static void node_declare(NodeDeclarationBuilder &b)
b.allow_any_socket_order();
b.add_input<decl::Bundle>("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<decl::Bundle>("Bundle").align_with_previous();
}