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
This commit is contained in:
luz paz
2025-09-12 07:19:27 +02:00
committed by Pratik Borhade
parent ad50ee6bf6
commit f29382bd7b
2 changed files with 4 additions and 4 deletions

View File

@@ -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. */

View File

@@ -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();