[Bf-blender-cvs] [47f02e1227a] temp-geometry-nodes-extrude-mesh: Cleanup: Fix typos

Hans Goudey noreply at git.blender.org
Mon Jan 24 05:01:40 CET 2022


Commit: 47f02e1227af7aab01d41c3a7c0076e2de06aec8
Author: Hans Goudey
Date:   Sun Jan 23 21:58:45 2022 -0600
Branches: temp-geometry-nodes-extrude-mesh
https://developer.blender.org/rB47f02e1227af7aab01d41c3a7c0076e2de06aec8

Cleanup: Fix typos

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

M	source/blender/blenkernel/BKE_attribute_math.hh
M	source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc

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

diff --git a/source/blender/blenkernel/BKE_attribute_math.hh b/source/blender/blenkernel/BKE_attribute_math.hh
index 36a08b18963..5ce4ae024f4 100644
--- a/source/blender/blenkernel/BKE_attribute_math.hh
+++ b/source/blender/blenkernel/BKE_attribute_math.hh
@@ -373,8 +373,11 @@ template<> struct DefaultPropatationMixerStruct<bool> {
   using type = BooleanPropagationMixer;
 };
 
-/* This mixer is meant for propagating attributes when creating new geometry. A key difference
- * with the default mixer is that booleans are mixed with "or" instead of "at least half". */
+/**
+ * This mixer is meant for propagating attributes when creating new geometry. A key difference
+ * with the default mixer is that booleans are mixed with "or" instead of "at least half"
+ * (the default mixing for booleans).
+ */
 template<typename T>
 using DefaultPropatationMixer = typename DefaultPropatationMixerStruct<T>::type;
 
diff --git a/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc b/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
index 8d311906527..97237030cbb 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
@@ -1191,7 +1191,7 @@ static void extrude_individual_mesh_faces(MeshComponent &component,
           break;
         }
         case ATTR_DOMAIN_FACE: {
-          /* Each side face gets the values from the correspoinding new face. */
+          /* Each side face gets the values from the corresponding new face. */
           MutableSpan<T> new_data = data.slice(side_poly_range);
           threading::parallel_for(poly_selection.index_range(), 1024, [&](const IndexRange range) {
             for (const int i_selection : range) {



More information about the Bf-blender-cvs mailing list