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-22 06:44:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-22 06:48:36 +0300
commitcb521bd37b26d069cfefec9683312e27c4caae90 (patch)
tree61980445582a9201b587ee33bbecea0256aedbf3 /source/blender/blenlib/BLI_virtual_array.hh
parentf051146ae64550b65a37bc1cb6f9c60583fa0123 (diff)
Cleanup: spelling, expand on comments
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 51d2e820504..2f23dbac32f 100644
--- a/source/blender/blenlib/BLI_virtual_array.hh
+++ b/source/blender/blenlib/BLI_virtual_array.hh
@@ -21,7 +21,7 @@
*
* A virtual array is a data structure that behaves similar to an array, but its elements are
* accessed through virtual methods. This improves the decoupling of a function from its callers,
- * because it does not have to know exactly how the data is layed out in memory, or if it is stored
+ * because it does not have to know exactly how the data is laid out in memory, or if it is stored
* in memory at all. It could just as well be computed on the fly.
*
* Taking a virtual array as parameter instead of a more specific non-virtual type has some