[Bf-blender-cvs] [35375380d73] master: Cleanup: Grammar fix in lazy function

Hans Goudey noreply at git.blender.org
Fri Sep 23 15:07:42 CEST 2022


Commit: 35375380d73b93999b879164fd59266ee044472c
Author: Hans Goudey
Date:   Thu Sep 22 23:59:36 2022 -0500
Branches: master
https://developer.blender.org/rB35375380d73b93999b879164fd59266ee044472c

Cleanup: Grammar fix in lazy function

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

M	source/blender/nodes/intern/geometry_nodes_lazy_function.cc

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

diff --git a/source/blender/nodes/intern/geometry_nodes_lazy_function.cc b/source/blender/nodes/intern/geometry_nodes_lazy_function.cc
index 4ffeb815e34..cb296cdd93f 100644
--- a/source/blender/nodes/intern/geometry_nodes_lazy_function.cc
+++ b/source/blender/nodes/intern/geometry_nodes_lazy_function.cc
@@ -142,7 +142,7 @@ class LazyFunctionForGeometryNode : public LazyFunction {
 };
 
 /**
- * Used to gather all inputs of a multi-input socket. A separate node is necessary, because
+ * Used to gather all inputs of a multi-input socket. A separate node is necessary because
  * multi-inputs are not supported in lazy-function graphs.
  */
 class LazyFunctionForMultiInput : public LazyFunction {
@@ -173,7 +173,7 @@ class LazyFunctionForMultiInput : public LazyFunction {
     base_type_->to_static_type_tag<GeometrySet, ValueOrField<std::string>>([&](auto type_tag) {
       using T = typename decltype(type_tag)::type;
       if constexpr (std::is_void_v<T>) {
-        /* This type is not support in this node for now. */
+        /* This type is not supported in this node for now. */
         BLI_assert_unreachable();
       }
       else {



More information about the Bf-blender-cvs mailing list