diff --git a/JoeyLib-Memory-Functions.md b/JoeyLib-Memory-Functions.md index 68b3ecf..53494a6 100644 --- a/JoeyLib-Memory-Functions.md +++ b/JoeyLib-Memory-Functions.md @@ -10,7 +10,7 @@ Frees a block of memory pointed to by `p`. ```c void *jlMalloc(size_t *bytes); ``` -Allocates `bytes` of memory and returns a pointer to the new block. +Allocates `bytes` of memory and returns a pointer to the new block. Unlike traditional `malloc`, the new block will be zeroed. #### jlRealloc ```c