Skip to content

Commit 4f9644e

Browse files
TylerMSFTTylerMSFT
authored andcommitted
a little more wordsmithing
1 parent eb7c1eb commit 4f9644e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/c-runtime-library/memory-allocation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ These routines allocate, free, and reallocate memory.
1616
|[`_alloca`](../c-runtime-library/reference/alloca.md), [`_malloca`](../c-runtime-library/reference/malloca.md)|Allocate memory from the stack|
1717
|[`calloc`](../c-runtime-library/reference/calloc.md)|Allocate an array and initialize its elements to 0 (zero)|
1818
|[`_calloc_dbg`](../c-runtime-library/reference/calloc-dbg.md)|Debug version of **`calloc`**. Only available in the debug versions of the run-time libraries|
19-
|[`operator delete`, `operator delete[]`](../c-runtime-library/delete-operator-crt.md)|Free allocated memory|
19+
|[`operator delete`, `operator delete[]`](../c-runtime-library/delete-operator-crt.md)|Free memory allocated on the heap |
2020
|[`_expand`](../c-runtime-library/reference/expand.md)|Expand or shrink a block of memory without moving it|
2121
|[`_expand_dbg`](../c-runtime-library/reference/expand-dbg.md)|Debug version of **`_expand`**. Only available in the debug versions of the run-time libraries|
22-
|[`free`](../c-runtime-library/reference/free.md)|Free memory|
22+
|[`free`](../c-runtime-library/reference/free.md)|Free memory allocated on the heap|
2323
|[`_free_dbg`](../c-runtime-library/reference/free-dbg.md)|Debug version of **`free`**. Only available in the debug versions of the run-time libraries|
2424
|[`_freea`](../c-runtime-library/reference/freea.md)|Free memory allocated on the stack|
25-
|[`_get_heap_handle`](../c-runtime-library/reference/get-heap-handle.md)|Get a Win32 `HANDLE` to the CRT heap.|
25+
|[`_get_heap_handle`](../c-runtime-library/reference/get-heap-handle.md)|Get a Win32 `HANDLE` to the C runtime (CRT) heap.|
2626
|[`_heapadd`](../c-runtime-library/heapadd.md)|Add memory to the heap|
2727
|[`_heapchk`](../c-runtime-library/reference/heapchk.md)|Check the heap for consistency|
2828
|[`_heapmin`](../c-runtime-library/reference/heapmin.md)|Release unused memory in the heap|

0 commit comments

Comments
 (0)