From dea2c3f256435f6384c1b42e9073a014489011b0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 13 Jun 2020 12:50:07 +1000 Subject: Cleanup: spelling --- source/blender/blenlib/BLI_map.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/BLI_map.hh') diff --git a/source/blender/blenlib/BLI_map.hh b/source/blender/blenlib/BLI_map.hh index 48c58341525..a4c3ee76ca1 100644 --- a/source/blender/blenlib/BLI_map.hh +++ b/source/blender/blenlib/BLI_map.hh @@ -94,7 +94,7 @@ template< * that (unlike vector) initializing a map has a O(n) cost in the number of slots. * * When Key or Value are large, the small buffer optimization is disabled by default to avoid - * large unexpected allocations on the stack. It can still be enabled explicitely though. + * large unexpected allocations on the stack. It can still be enabled explicitly though. */ uint32_t InlineBufferCapacity = (sizeof(Key) + sizeof(Value) < 100) ? 4 : 0, /** -- cgit v1.2.3