From f29382bd7bd1bb13a0830393d33487aa92a43772 Mon Sep 17 00:00:00 2001 From: luz paz Date: Fri, 12 Sep 2025 07:19:27 +0200 Subject: [PATCH] Cleanup: Fix typos in source/blender/animrig Fixes user-facing and non-user-facing typos. Pull Request: https://projects.blender.org/blender/blender/pulls/146098 --- source/blender/animrig/intern/bone_collections_test.cc | 2 +- source/blender/animrig/intern/evaluation_test.cc | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/blender/animrig/intern/bone_collections_test.cc b/source/blender/animrig/intern/bone_collections_test.cc index 388c5bef2be..cc23260b772 100644 --- a/source/blender/animrig/intern/bone_collections_test.cc +++ b/source/blender/animrig/intern/bone_collections_test.cc @@ -1185,7 +1185,7 @@ TEST_F(ArmatureBoneCollections, bcoll_move_to_parent__within_siblings) EXPECT_EQ(0, arm.collection_array[5]->child_count); EXPECT_EQ(0, arm.collection_array[6]->child_count); - /* Move r0_child1 to become the 3nd child of root_0. */ + /* Move r0_child1 to become the 3rd child of root_0. */ EXPECT_EQ(5, armature_bonecoll_move_to_parent(&arm, 2, /* From index. */ diff --git a/source/blender/animrig/intern/evaluation_test.cc b/source/blender/animrig/intern/evaluation_test.cc index d002a2a2374..45948113ae6 100644 --- a/source/blender/animrig/intern/evaluation_test.cc +++ b/source/blender/animrig/intern/evaluation_test.cc @@ -117,8 +117,8 @@ class AnimationEvaluationTest : public testing::Test { << std::endl << " " << rna_path << "[" << array_index << "] evaluation did not produce the expected result:" << std::endl - << " evaluted to: " << testing::PrintToString(eval_value) << std::endl - << " expected : " << testing::PrintToString(expect_value) << std::endl; + << " evaluated to: " << testing::PrintToString(eval_value) << std::endl + << " expected : " << testing::PrintToString(expect_value) << std::endl; } return testing::AssertionSuccess(); @@ -136,7 +136,7 @@ class AnimationEvaluationTest : public testing::Test { << std::endl << " " << rna_path << "[" << array_index << "] evaluation should NOT produce a value:" << std::endl - << " evaluted to: " << testing::PrintToString(*eval_value) << std::endl; + << " evaluated to: " << testing::PrintToString(*eval_value) << std::endl; } return testing::AssertionSuccess();