From 730fe9e609fc1192c41c7f85caacf2ca6bcca621 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sun, 30 Jul 2023 08:01:11 +0300 Subject: [PATCH] Correct a typo in mpool.h --- src/mpool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpool.h b/src/mpool.h index c128613f..d4da191c 100644 --- a/src/mpool.h +++ b/src/mpool.h @@ -37,7 +37,7 @@ void *mpool_calloc(struct mpool *mp); void mpool_free(struct mpool *mp, void *target); /** - * mpool_destory - destory a memory pool + * mpool_destory - destroy a memory pool * @mp: a pointer points to the target memory pool */ void mpool_destory(struct mpool *mp);