summaryrefslogtreecommitdiff
path: root/mem/docs/framer.9.scd
diff options
context:
space:
mode:
Diffstat (limited to 'mem/docs/framer.9.scd')
-rw-r--r--mem/docs/framer.9.scd4
1 files changed, 2 insertions, 2 deletions
diff --git a/mem/docs/framer.9.scd b/mem/docs/framer.9.scd
index 5836e19..1bc3670 100644
--- a/mem/docs/framer.9.scd
+++ b/mem/docs/framer.9.scd
@@ -1,4 +1,4 @@
-MEMFRAMER(9)
+MEM_FRAMER(9)
# NAME
@@ -18,7 +18,7 @@ void mem_framer_free(MemAllocator *self, void *ptr);
# DESCRIPTION
-*MemFramer* and its related functions is an implementation of memallocator(9) designed to manage the allocation and freeing of chunks of same size - they are called _frames_ - that are boundary aligned on multiples of that size.
+*MemFramer* and its related functions is an implementation of mem_allocator(9) designed to manage the allocation and freeing of chunks of same size - they are called _frames_ - that are boundary aligned on multiples of that size.
*MemFramer* is a linked-list allocator, meaning that when a frame is requested, it can either pop the frame from a free list (a linked list of frames that have previously been freed), or bump a new frame from the region of usable memory that it manages.