From 7a198217295f2b0eccb0dba78f881084e577a2ea Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 22 Feb 2026 14:55:37 +0100 Subject: fix typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libslim.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libslim.h b/libslim.h index c1c0fba..861df14 100644 --- a/libslim.h +++ b/libslim.h @@ -157,7 +157,7 @@ LIBSLIM_DECLARE_FORMAT(rgb_ld, { long double r, g, b; }); /* Rotate an image 90 degrees clockwise */ #define libslim_rotate_90(OUT, IN)\ do {\ - /* equivalent to flip than transpose */\ + /* equivalent to flip then transpose */\ size_t x__, y__, i__;\ size_t rw__ = (OUT)->meta.width + (OUT)->meta.hblank;\ size_t w__ = (IN)->meta.width;\ @@ -204,7 +204,7 @@ LIBSLIM_DECLARE_FORMAT(rgb_ld, { long double r, g, b; }); /* Rotate an image 270 degrees clockwise */ #define libslim_rotate_270(OUT, IN)\ do {\ - /* equivalent to transpose than flip */\ + /* equivalent to transpose then flip */\ size_t x__, y__, i__;\ size_t rw__ = (OUT)->meta.width + (OUT)->meta.hblank;\ size_t w__ = (IN)->meta.width;\ @@ -227,7 +227,7 @@ LIBSLIM_DECLARE_FORMAT(rgb_ld, { long double r, g, b; }); /* Transpose an image along instead of across the main diagonal */ #define libslim_anti_transpose(OUT, IN)\ do {\ - /* equivalent to flip than transpose than flip, or a tranpose and a 180 degree rotation */\ + /* equivalent to flip then transpose then flip, or a transpose and a 180 degree rotation */\ size_t x__, y__, i__;\ size_t rw__ = (OUT)->meta.width + (OUT)->meta.hblank;\ size_t w__ = (IN)->meta.width;\ -- cgit v1.2.3-70-g09d2