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-07 05:52:05 +0300
committerCampbell Barton <campbell@blender.org>2022-09-07 06:04:44 +0300
commitda3d1e9165f4d0ffcb04645aded3eea489fd6cdd (patch)
tree5ba77108c3eac7a35aab0acfbc151f1c07006fb6 /source/blender/blenlib
parenta5d65200c2aad5070824c3cbdc43b4d5cebe2cc3 (diff)
Cleanup: spelling in comments, correct doxy slashes, replace '/w'
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_pool.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_pool.hh b/source/blender/blenlib/BLI_pool.hh
index 7ed39fea195..8745c019db5 100644
--- a/source/blender/blenlib/BLI_pool.hh
+++ b/source/blender/blenlib/BLI_pool.hh
@@ -5,7 +5,7 @@
*
* A `blender::Pool` allows fast allocation and deallocation of many elements of the same type.
*
- * It is compatible with types that are not moveable.
+ * It is compatible with types that are not movable.
*
* Freed elements memory will be reused by next allocations.
* Elements are allocated in chunks to reduce memory fragmentation and avoid reallocation.