Merge pull request #44 from Samyak2/samyak-typo-fix-1

Fix a typo: "user" -> "use"
This commit is contained in:
Dominic Szablewski 2021-11-28 12:32:14 +01:00 committed by GitHub
commit f0a38c19e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
qoi.h
View File

@ -262,7 +262,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);