aboutsummaryrefslogtreecommitdiffstats
path: root/libslim.h
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-02-22 14:55:37 +0100
committerMattias Andrée <m@maandree.se>2026-02-22 14:55:37 +0100
commit7a198217295f2b0eccb0dba78f881084e577a2ea (patch)
tree525c17d86fc93bf555b11a7e4d63d832a844c1ee /libslim.h
parentUpdate e-mail (diff)
downloadlibslim-7a198217295f2b0eccb0dba78f881084e577a2ea.tar.gz
libslim-7a198217295f2b0eccb0dba78f881084e577a2ea.tar.bz2
libslim-7a198217295f2b0eccb0dba78f881084e577a2ea.tar.xz
fix typosHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'libslim.h')
-rw-r--r--libslim.h6
1 files 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;\