Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-05-20 10:55:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-05-20 10:55:35 +0300
commit44e7192745f0b53e29d20bb88d4df0945a808758 (patch)
tree57b1dc9fecd0d8f3f67e0d70d4b9e1915c6af446 /source/blender/blenkernel
parenta5ac062c51889fc992367ba7f66870736b6d6314 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_attribute_access.hh2
-rw-r--r--source/blender/blenkernel/intern/geometry_component_curve.cc2
-rw-r--r--source/blender/blenkernel/intern/geometry_set_instances.cc4
3 files changed, 4 insertions, 4 deletions
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);
}