From 6241bc718ccf250f80613ca399107a3a8c2c746a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 8 Dec 2020 07:06:18 +1100 Subject: [PATCH] docs: fix simple typo, purpsosely -> purposely There is a small typo in miniz.h. Should read `purposely` rather than `purpsosely`. --- miniz.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniz.h b/miniz.h index 754bc5a..f897e17 100644 --- a/miniz.h +++ b/miniz.h @@ -220,7 +220,7 @@ enum #define MZ_DEFLATED 8 /* Heap allocation callbacks. -Note that mz_alloc_func parameter types purpsosely differ from zlib's: items/size is size_t, not unsigned long. */ +Note that mz_alloc_func parameter types purposely differ from zlib's: items/size is size_t, not unsigned long. */ typedef void *(*mz_alloc_func)(void *opaque, size_t items, size_t size); typedef void (*mz_free_func)(void *opaque, void *address); typedef void *(*mz_realloc_func)(void *opaque, void *address, size_t items, size_t size);