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 <campbell@blender.org>2022-09-21 04:57:20 +0300
committerCampbell Barton <campbell@blender.org>2022-09-21 05:00:01 +0300
commit5517c848bdf18df758466c0c6c8b7389f9df558a (patch)
tree5a7fecd5e76dc439e0b4b7e04ab0893c562d474c /source/blender/functions
parente9bdf8ebc3774f8f866ec9562b4552c98c7fd22f (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/functions')
-rw-r--r--source/blender/functions/intern/lazy_function_graph_executor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/functions/intern/lazy_function_graph_executor.cc b/source/blender/functions/intern/lazy_function_graph_executor.cc
index f3ce2476085..4c5c3fa47a2 100644
--- a/source/blender/functions/intern/lazy_function_graph_executor.cc
+++ b/source/blender/functions/intern/lazy_function_graph_executor.cc
@@ -7,7 +7,7 @@
* - Allow spreading the work over an arbitrary number of threads efficiently.
*
* This executor makes use of `FN_lazy_threading.hh` to enable multi-threading only when it seems
- * benefitial. It operates in two modes: single- and multi-threaded. The use of a task pool and
+ * beneficial. It operates in two modes: single- and multi-threaded. The use of a task pool and
* locks is avoided in single-threaded mode. Once multi-threading is enabled the executor starts
* using both. It is not possible to switch back from multi-threaded to single-threaded mode.
*