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-04-28 07:03:49 +0300
committerCampbell Barton <campbell@blender.org>2022-04-28 07:03:49 +0300
commit198a7639441536681a257debd905917e02d52b7f (patch)
treea578e9fa557529815ad52898fa989718a2c7fd1f /source/blender/blenlib/BLI_devirtualize_parameters.hh
parenteb4b79c5562ad6cd13b45c2e69a7b95628853e17 (diff)
Cleanup: spelling in comments
Also use back-slashes for doxy commands.
Diffstat (limited to 'source/blender/blenlib/BLI_devirtualize_parameters.hh')
-rw-r--r--source/blender/blenlib/BLI_devirtualize_parameters.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_devirtualize_parameters.hh b/source/blender/blenlib/BLI_devirtualize_parameters.hh
index ca11ec2e579..07458906756 100644
--- a/source/blender/blenlib/BLI_devirtualize_parameters.hh
+++ b/source/blender/blenlib/BLI_devirtualize_parameters.hh
@@ -12,7 +12,7 @@
*
* Using virtual arrays has the downside that individual elements are accessed through a virtual
* method call, which has some overhead compared to normal array access. Whether this overhead is
- * negilible depends on the context. For very small functions (e.g. a single addition), the
+ * negligible depends on the context. For very small functions (e.g. a single addition), the
* overhead can make the function many times slower. Furthermore, it prevents the compiler from
* doing some optimizations (e.g. loop unrolling and inserting SIMD instructions).
*