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-25 11:25:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-05-25 11:25:55 +0300
commitad447705c03ec5a1565e1b6d3618a62ecfd74792 (patch)
treeb60a1c1cfd3c695ecac6e2cee8a491840d759381 /source/blender/nodes/NOD_geometry_exec.hh
parent8c7766dc03d6beb68d81a8ca357a5b3638d16f7d (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/nodes/NOD_geometry_exec.hh')
-rw-r--r--source/blender/nodes/NOD_geometry_exec.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/nodes/NOD_geometry_exec.hh b/source/blender/nodes/NOD_geometry_exec.hh
index 52d7e097f0d..7b176b2f395 100644
--- a/source/blender/nodes/NOD_geometry_exec.hh
+++ b/source/blender/nodes/NOD_geometry_exec.hh
@@ -200,7 +200,7 @@ class GeoNodeExecParams {
/**
* Returns true when the output has to be computed.
- * Nodes that support lazyness could use the #lazy_output_is_required variant to possibly avoid
+ * Nodes that support laziness could use the #lazy_output_is_required variant to possibly avoid
* some computations.
*/
bool output_is_required(StringRef identifier) const
@@ -212,7 +212,7 @@ class GeoNodeExecParams {
* Tell the evaluator that a specific input is required.
* This returns true when the input will only be available in the next execution.
* False is returned if the input is available already.
- * This can only be used when the node supports lazyness.
+ * This can only be used when the node supports laziness.
*/
bool lazy_require_input(StringRef identifier)
{
@@ -222,7 +222,7 @@ class GeoNodeExecParams {
/**
* Asks the evaluator if a specific output is required right now. If this returns false, the
* value might still need to be computed later.
- * This can only be used when the node supports lazyness.
+ * This can only be used when the node supports laziness.
*/
bool lazy_output_is_required(StringRef identifier)
{