spelling: header

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 12:50:27 -05:00
parent 1fcda4287c
commit 10dee72f9e
2 changed files with 10 additions and 10 deletions

View file

@ -43,9 +43,9 @@ typedef struct Heap {
HeapInfo_t *begin;
HeapInfo_t *end;
//! Number of allocated bytes, including beginers
//! Number of allocated bytes, including headers
unsigned int current_size;
//! Peak number of allocated bytes, including beginers
//! Peak number of allocated bytes, including headers
unsigned int high_water_mark;
HeapLockImpl lock_impl;