From 8ebd4e7b6dbcbe87fceb9b301d24f7fe30096a9d Mon Sep 17 00:00:00 2001 From: Samyak S Sarnayak Date: Sun, 28 Nov 2021 16:18:01 +0530 Subject: [PATCH] Fix a typo: "user" -> "use" --- qoi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qoi.h b/qoi.h index 5f43c38d..c11c840a 100644 --- a/qoi.h +++ b/qoi.h @@ -229,7 +229,7 @@ void *qoi_read(const char *filename, qoi_desc *desc, int channels); // failed) or a pointer to the encoded data on success. On success the out_len // is set to the size in bytes of the encoded data. -// The returned qoi data should be free()d after user. +// The returned qoi data should be free()d after use. void *qoi_encode(const void *data, const qoi_desc *desc, int *out_len);