From 9ebc02fc99aeda7f0e2000cf89743105327290c4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 26 Sep 2025 21:59:45 +1000 Subject: [PATCH] Cleanup: spelling, repeated words (make check_spelling_*) --- scripts/startup/bl_operators/node.py | 2 +- source/blender/blenkernel/intern/library.cc | 2 +- source/blender/imbuf/intern/openexr/openexr_api.cpp | 2 +- source/blender/makesrna/intern/rna_pose.cc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/startup/bl_operators/node.py b/scripts/startup/bl_operators/node.py index 1b3fa323dc3..8464083aa9d 100644 --- a/scripts/startup/bl_operators/node.py +++ b/scripts/startup/bl_operators/node.py @@ -626,7 +626,7 @@ class ZoneOperator: "Perform operations separately for each geometry element (e.g. vertices, edges, etc.)" ), "NodeClosureInput": ( - "Wrap nodes inside a closure that can be executed at a different part of the nodetree" + "Wrap nodes inside a closure that can be executed at a different part of the node-tree" ), } diff --git a/source/blender/blenkernel/intern/library.cc b/source/blender/blenkernel/intern/library.cc index 698d93d5dc8..fb9a184c899 100644 --- a/source/blender/blenkernel/intern/library.cc +++ b/source/blender/blenkernel/intern/library.cc @@ -471,7 +471,7 @@ static Library *get_archive_library(Main &bmain, ID *for_id, const IDHash &for_i BLI_assert_msg( packed_id && packed_id->deep_hash != for_id_deep_hash, "An already packed ID with same deep hash as the one to be packed, should have already " - "be found and used (deduplication) before reaching this codepath"); + "be found and used (deduplication) before reaching this code-path"); #endif UNUSED_VARS_NDEBUG(for_id_deep_hash); continue; diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp index 197b4c7b97f..cf031377593 100644 --- a/source/blender/imbuf/intern/openexr/openexr_api.cpp +++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp @@ -1593,7 +1593,7 @@ static blender::Vector exr_channels_in_multi_part_file(const MultiPa const ChannelList &c = file.header(p).channels(); /* Parse colorspace. Per part colorspaces are not currently used, but - * might as well populate them them for consistency with writing. */ + * might as well populate them for consistency with writing. */ const ColorSpace *colorspace = imb_exr_part_colorspace(file.header(p)); if (colorspace == nullptr) { colorspace = global_colorspace; diff --git a/source/blender/makesrna/intern/rna_pose.cc b/source/blender/makesrna/intern/rna_pose.cc index 31897d8028b..26d4eb4f037 100644 --- a/source/blender/makesrna/intern/rna_pose.cc +++ b/source/blender/makesrna/intern/rna_pose.cc @@ -1187,7 +1187,7 @@ static void rna_def_pose_channel(BlenderRNA *brna) prop, "Use As Pivot", "Transform the bone as if it was a child of the Custom Shape Transform bone. This can be " - "useful when combining shapekey and armature deformations."); + "useful when combining shape-key and armature deformations."); RNA_def_property_update(prop, NC_OBJECT | ND_POSE, "rna_Pose_update"); prop = RNA_def_property(srna, "use_custom_shape_bone_size", PROP_BOOLEAN, PROP_NONE);