[Bf-blender-cvs] [5f059c87513] master: Cleanup: spelling

Campbell Barton noreply at git.blender.org
Tue Apr 14 02:50:25 CEST 2020


Commit: 5f059c8751379edaabdffb68af7f27979c1c12f6
Author: Campbell Barton
Date:   Tue Apr 14 10:41:21 2020 +1000
Branches: master
https://developer.blender.org/rB5f059c8751379edaabdffb68af7f27979c1c12f6

Cleanup: spelling

===================================================================

M	source/blender/blenkernel/intern/lib_id.c
M	source/blender/depsgraph/intern/depsgraph_eval.cc
M	source/blender/editors/interface/interface.c
M	source/blender/editors/space_node/node_relationships.c
M	source/blender/editors/transform/transform_convert_armature.c

===================================================================

diff --git a/source/blender/blenkernel/intern/lib_id.c b/source/blender/blenkernel/intern/lib_id.c
index 9e4f1dda682..80f29a55b28 100644
--- a/source/blender/blenkernel/intern/lib_id.c
+++ b/source/blender/blenkernel/intern/lib_id.c
@@ -1724,7 +1724,7 @@ static void library_make_local_copying_check(ID *id,
      * relation we want to check is in the other way around. */
     if (entry->usage_flag & IDWALK_CB_LOOPBACK) {
 #ifndef NDEBUG
-      /* Some debug checks to ensure we explicitely are aware of all 'loopback' cases, since those
+      /* Some debug checks to ensure we explicitly are aware of all 'loop-back' cases, since those
        * may not always be manageable in the same way... */
       switch (GS(par_id->name)) {
         case ID_OB:
diff --git a/source/blender/depsgraph/intern/depsgraph_eval.cc b/source/blender/depsgraph/intern/depsgraph_eval.cc
index 7e7ab07825f..9251d975125 100644
--- a/source/blender/depsgraph/intern/depsgraph_eval.cc
+++ b/source/blender/depsgraph/intern/depsgraph_eval.cc
@@ -20,7 +20,7 @@
 /** \file
  * \ingroup depsgraph
  *
- * Evaluation engine entrypoints for Depsgraph Engine.
+ * Evaluation engine entry-points for Depsgraph Engine.
  */
 
 #include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c
index 18666daa8b8..2b674686ffa 100644
--- a/source/blender/editors/interface/interface.c
+++ b/source/blender/editors/interface/interface.c
@@ -1299,9 +1299,8 @@ static bool ui_but_event_property_operator_string(const bContext *C,
       }
       else if (GS(id->name) == ID_SCE) {
         if (RNA_struct_is_a(ptr->type, &RNA_ToolSettings)) {
-          /* toolsettings property
-           * NOTE: toolsettings is usually accessed directly (i.e. not through scene)
-           */
+          /* Tool-settings property:
+           * NOTE: tool-settings is usually accessed directly (i.e. not through scene). */
           data_path = RNA_path_from_ID_to_property(ptr, prop);
         }
         else {
diff --git a/source/blender/editors/space_node/node_relationships.c b/source/blender/editors/space_node/node_relationships.c
index 8f8f945a600..8c2f79109f6 100644
--- a/source/blender/editors/space_node/node_relationships.c
+++ b/source/blender/editors/space_node/node_relationships.c
@@ -1622,8 +1622,8 @@ static void node_parent_offset_apply(NodeInsertOfsData *data, bNode *parent, con
 
   node_offset_apply(parent, offset_x);
 
-  /* flag all childs as offset to prevent them from being offset
-   * separately (they've already moved with the parent) */
+  /* Flag all children as offset to prevent them from being offset
+   * separately (they've already moved with the parent). */
   for (node = data->ntree->nodes.first; node; node = node->next) {
     if (nodeIsChildOf(parent, node)) {
       /* NODE_TEST is used to flag nodes that shouldn't be offset (again) */
diff --git a/source/blender/editors/transform/transform_convert_armature.c b/source/blender/editors/transform/transform_convert_armature.c
index 481198ea88c..0106f4f41c7 100644
--- a/source/blender/editors/transform/transform_convert_armature.c
+++ b/source/blender/editors/transform/transform_convert_armature.c
@@ -231,9 +231,9 @@ static void add_pose_transdata(
 
       data->flag |= CONSTRAINT_IK_AUTO;
 
-      /* Add a temporary auto IK constraint here, as we will only temporarly active this targetless
-       * bone during transform. (Targetless IK constraints are treated as if they are disabled
-       * unless they are transformed) */
+      /* Add a temporary auto IK constraint here, as we will only temporarily active this
+       * targetless bone during transform. (Targetless IK constraints are treated as if they are
+       * disabled unless they are transformed). */
       add_temporary_ik_constraint(pchan, data);
       Main *bmain = CTX_data_main(t->context);
       update_deg_with_temporary_ik(bmain, ob);



More information about the Bf-blender-cvs mailing list