From 4fe63e44d7c6e40c5785905bb34aedf0756a9b87 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 10 Feb 2019 12:33:16 +1100 Subject: [PATCH] Fixed typo [ci skip] --- docs/reference/block_allocator.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/block_allocator.rst b/docs/reference/block_allocator.rst index e70f9667c..400f236dc 100644 --- a/docs/reference/block_allocator.rst +++ b/docs/reference/block_allocator.rst @@ -8,7 +8,7 @@ Historically there have been two image allocators in Pillow: ``ImagingAllocateBlock`` and ``ImagingAllocateArray``. The first works for images smaller than 16MB of data and allocates one large chunk of memory of ``im->linesize * im->ysize`` bytes. The second works for -large images and make one allocation for each scan line of size +large images and makes one allocation for each scan line of size ``im->linesize`` bytes. This makes for a very sharp transition between one allocation and potentially thousands of small allocations, leading to unpredictable performance penalties around the transition.