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:
authorHans Goudey <h.goudey@me.com>2022-09-23 07:59:36 +0300
committerHans Goudey <h.goudey@me.com>2022-09-23 16:05:44 +0300
commit35375380d73b93999b879164fd59266ee044472c (patch)
treec138c34be9844770a72b1c327f4b79f4bbc1ed9e /source/blender/nodes/intern
parent998fc4f8f60e58acd439037f68b545c714cc1ec2 (diff)
Cleanup: Grammar fix in lazy function
Diffstat (limited to 'source/blender/nodes/intern')
-rw-r--r--source/blender/nodes/intern/geometry_nodes_lazy_function.cc4
1 files changed, 2 insertions, 2 deletions
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 {