From 625349a6bd03f9af20a7f37814c8a91b02fa7d5c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 10 Nov 2021 00:56:17 +1100 Subject: Cleanup: spelling, C style comments --- source/blender/editors/armature/armature_relations.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/armature/armature_relations.c') diff --git a/source/blender/editors/armature/armature_relations.c b/source/blender/editors/armature/armature_relations.c index ac1c9418af9..cac6e9965b6 100644 --- a/source/blender/editors/armature/armature_relations.c +++ b/source/blender/editors/armature/armature_relations.c @@ -908,9 +908,9 @@ static int armature_parent_set_invoke(bContext *C, wmOperator *UNUSED(op), const wmEvent *UNUSED(event)) { - // False when all selected bones are parented to the active bone. + /* False when all selected bones are parented to the active bone. */ bool enable_offset = false; - // False when all selected bones are connected to the active bone. + /* False when all selected bones are connected to the active bone. */ bool enable_connect = false; { Object *ob = CTX_data_edit_object(C); @@ -1033,9 +1033,9 @@ static int armature_parent_clear_invoke(bContext *C, wmOperator *UNUSED(op), const wmEvent *UNUSED(event)) { - // False when no selected bones are connected to the active bone. + /* False when no selected bones are connected to the active bone. */ bool enable_disconnect = false; - // False when no selected bones are parented to the active bone. + /* False when no selected bones are parented to the active bone. */ bool enable_clear = false; { Object *ob = CTX_data_edit_object(C); -- cgit v1.2.3