diff options
| -rw-r--r-- | libslim.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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;\ |
