From 4e45265dc6cafe0bf6f36a14a469288183059858 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 30 Nov 2021 09:04:50 +1100 Subject: Cleanup: spelling in comments & strings --- source/blender/blenlib/BLI_virtual_array.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib') diff --git a/source/blender/blenlib/BLI_virtual_array.hh b/source/blender/blenlib/BLI_virtual_array.hh index 96128fc5c32..5103ac4b668 100644 --- a/source/blender/blenlib/BLI_virtual_array.hh +++ b/source/blender/blenlib/BLI_virtual_array.hh @@ -578,7 +578,7 @@ template class VArrayCommon { /* Make sure we are actually constructing a #VArrayImpl. */ static_assert(std::is_base_of_v, ImplT>); if constexpr (std::is_copy_constructible_v && Storage::template is_inline_v) { - /* Only inline the implementatiton when it is copyable and when it fits into the inline + /* Only inline the implementation when it is copyable and when it fits into the inline * buffer of the storage. */ impl_ = &storage_.template emplace(std::forward(args)...); } -- cgit v1.2.3