[Bf-blender-cvs] [44e7192745f] master: Cleanup: spelling

Campbell Barton noreply at git.blender.org
Thu May 20 10:06:24 CEST 2021


Commit: 44e7192745f0b53e29d20bb88d4df0945a808758
Author: Campbell Barton
Date:   Thu May 20 17:55:35 2021 +1000
Branches: master
https://developer.blender.org/rB44e7192745f0b53e29d20bb88d4df0945a808758

Cleanup: spelling

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

M	intern/ghost/intern/GHOST_Xr_intern.h
M	source/blender/blenkernel/BKE_attribute_access.hh
M	source/blender/blenkernel/intern/geometry_component_curve.cc
M	source/blender/blenkernel/intern/geometry_set_instances.cc

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

diff --git a/intern/ghost/intern/GHOST_Xr_intern.h b/intern/ghost/intern/GHOST_Xr_intern.h
index 87a62ed838b..0616e426da3 100644
--- a/intern/ghost/intern/GHOST_Xr_intern.h
+++ b/intern/ghost/intern/GHOST_Xr_intern.h
@@ -48,7 +48,7 @@
 
 inline void copy_ghost_pose_to_openxr_pose(const GHOST_XrPose &ghost_pose, XrPosef &r_oxr_pose)
 {
-  /* Set and convert to OpenXR coodinate space. */
+  /* Set and convert to OpenXR coordinate space. */
   r_oxr_pose.position.x = ghost_pose.position[0];
   r_oxr_pose.position.y = ghost_pose.position[1];
   r_oxr_pose.position.z = ghost_pose.position[2];
diff --git a/source/blender/blenkernel/BKE_attribute_access.hh b/source/blender/blenkernel/BKE_attribute_access.hh
index d81d66951cc..c3bc4d3ca4a 100644
--- a/source/blender/blenkernel/BKE_attribute_access.hh
+++ b/source/blender/blenkernel/BKE_attribute_access.hh
@@ -45,7 +45,7 @@ struct AttributeMetaData {
 };
 
 /**
- * Base class for the attribute intializer types described below.
+ * Base class for the attribute initializer types described below.
  */
 struct AttributeInit {
   enum class Type {
diff --git a/source/blender/blenkernel/intern/geometry_component_curve.cc b/source/blender/blenkernel/intern/geometry_component_curve.cc
index 73c9dae92bc..d08681da6ec 100644
--- a/source/blender/blenkernel/intern/geometry_component_curve.cc
+++ b/source/blender/blenkernel/intern/geometry_component_curve.cc
@@ -679,7 +679,7 @@ class PositionAttributeProvider final : public BuiltinPointAttributeProvider<flo
     }
 
     /* Use the regular position virtual array when there aren't any Bezier splines
-     * to avoid the overhead of thecking the spline type for every point. */
+     * to avoid the overhead of checking the spline type for every point. */
     if (!curve_has_bezier_spline) {
       return BuiltinPointAttributeProvider<float3>::try_get_for_write(component);
     }
diff --git a/source/blender/blenkernel/intern/geometry_set_instances.cc b/source/blender/blenkernel/intern/geometry_set_instances.cc
index 81984321b70..9abd00c2b4f 100644
--- a/source/blender/blenkernel/intern/geometry_set_instances.cc
+++ b/source/blender/blenkernel/intern/geometry_set_instances.cc
@@ -565,9 +565,9 @@ static void join_curve_splines(Span<GeometryInstanceGroup> set_groups, CurveComp
 
   for (SplinePtr &spline : new_curve->splines()) {
     /* Spline instances should have no custom attributes, since they always come
-     * from original objects which currenty do not support custom attributes.
+     * from original objects which currently do not support custom attributes.
      *
-     * This is only true as long as a GeometrySet cannot be instanced directly. */
+     * This is only true as long as a #GeometrySet cannot be instanced directly. */
     BLI_assert(spline->attributes.data.totlayer == 0);
     UNUSED_VARS_NDEBUG(spline);
   }



More information about the Bf-blender-cvs mailing list