From a6e66cd50ef64c0f2bf6fe154edcc652a66e9a46 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 9 Mar 2019 15:36:32 +0100 Subject: Fix various spelling mistakes throughout the code --- poezio/windows/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'poezio/windows/image.py') diff --git a/poezio/windows/image.py b/poezio/windows/image.py index 96636ec7..dfd2eae2 100644 --- a/poezio/windows/image.py +++ b/poezio/windows/image.py @@ -52,7 +52,7 @@ def render_svg(svg: bytes) -> Optional[Image.Image]: handle.render_cairo(context) data = surface.get_data() image = Image.frombytes('RGBA', (MAX_SIZE, MAX_SIZE), data.tobytes()) - # This is required because Cairo uses a BGRA (in host endianess) + # This is required because Cairo uses a BGRA (in host endianness) # format, and PIL an ABGR (in byte order) format. Yes, this is # confusing. b, g, r, a = image.split() -- cgit v1.2.3