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-03-23 08:08:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-23 08:08:53 +0300
commitbb78f38bd1328b8cfe6b4e912e8bb0371035854a (patch)
treed5b652df6bebc29922300cc91f894b8d284dbf72 /source/blender/blenlib/BLI_virtual_array.hh
parent3117de3a733e70959819ed6c1a76efddb879e269 (diff)
Cleanup: single quotes for Python enums, spelling
Diffstat (limited to 'source/blender/blenlib/BLI_virtual_array.hh')
-rw-r--r--source/blender/blenlib/BLI_virtual_array.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_virtual_array.hh b/source/blender/blenlib/BLI_virtual_array.hh
index 3e5e5378cf4..0f6240bad95 100644
--- a/source/blender/blenlib/BLI_virtual_array.hh
+++ b/source/blender/blenlib/BLI_virtual_array.hh
@@ -221,7 +221,7 @@ template<typename T> class VArrayForSingle final : public VArray<T> {
* exponential number of function instantiations (increasing compile time and binary size).
*
* Generally, this function should only be used when the virtual method call overhead to get an
- * element from a virtual array is signifant.
+ * element from a virtual array is significant.
*/
template<typename T, typename Func>
inline void devirtualize_varray(const VArray<T> &varray, const Func &func, bool enable = true)