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-15 03:03:46 +0300
committerCampbell Barton <campbell@blender.org>2022-09-15 03:03:46 +0300
commit4bbb043bc57f1dc27aa46624cd4d11b063070bac (patch)
treead4e24ed3eb5d45f8ace737668f02b0b46de863f /source/blender/blenlib
parent5cd08e373b5b37223222ae6a68cfe970839e7800 (diff)
Cleanup: spelling in comments, comment blocks
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_array_utils.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_array_utils.hh b/source/blender/blenlib/BLI_array_utils.hh
index dd65147a926..cf2f948b0b4 100644
--- a/source/blender/blenlib/BLI_array_utils.hh
+++ b/source/blender/blenlib/BLI_array_utils.hh
@@ -10,14 +10,14 @@
namespace blender::array_utils {
/**
- * Fill the destination span by copying masked values from the src array. Threaded based on
- * grainsize.
+ * Fill the destination span by copying masked values from the `src` array. Threaded based on
+ * grain-size.
*/
void copy(const GVArray &src, IndexMask selection, GMutableSpan dst, int64_t grain_size = 4096);
/**
- * Fill the destination span by copying values from the src array. Threaded based on
- * grainsize.
+ * Fill the destination span by copying values from the `src` array. Threaded based on
+ * grain-size.
*/
template<typename T>
inline void copy(const Span<T> src,