From ced520023346829d1b9c111398f996229f2e7763 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 11:40:20 -0500 Subject: [PATCH] spelling: size Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/libutil/includes/util/heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/includes/util/heap.h b/src/libutil/includes/util/heap.h index b2183c1e..f9c7caa2 100644 --- a/src/libutil/includes/util/heap.h +++ b/src/libutil/includes/util/heap.h @@ -111,7 +111,7 @@ void* heap_realloc(Heap* const heap, void *ptr, unsigned long nbytes, uintptr_t //! are zero'd. void* heap_zalloc(Heap* const heap, size_t size, uintptr_t client_pc); -//! Allocate a buffer to hold an array of count elements, each of size size (in bytes) +//! Allocate a buffer to hold an array of count elements, each of size (in bytes) //! and initializes all bits to zero. void* heap_calloc(Heap* const heap, size_t count, size_t size, uintptr_t client_pc);