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-12-09 12:21:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-09 12:21:26 +0300
commit8ef8f3a60a0a2c858ceb30a4f56a4a31ea538ba8 (patch)
tree9a7f156ebfe843b37b5c3115e37a57ddcbf1590b /source/blender/blenlib/intern
parent15a428eab0e0a0ca63953d71e8fc719e4a06c612 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/BLI_mempool_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_mempool_private.h b/source/blender/blenlib/intern/BLI_mempool_private.h
index 1d18f6d1b28..90569d87c41 100644
--- a/source/blender/blenlib/intern/BLI_mempool_private.h
+++ b/source/blender/blenlib/intern/BLI_mempool_private.h
@@ -48,7 +48,7 @@ typedef struct ParallelMempoolTaskData {
* (each task should have its own),
* such that each iterator goes over its own single chunk,
* and only getting the next chunk to iterate over has to be
- * protected against concurrency (which can be done in a lockless way).
+ * protected against concurrency (which can be done in a lock-less way).
*
* To be used when creating a task for each single item in the pool is totally overkill.
*