Skip to content

Commit

Permalink
[docs]close #12580 (#17549)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout authored Mar 29, 2021
1 parent a36816f commit e5be216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/system/memalloc.nim
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ when hasAlloc and not defined(js):
cast[ptr T](realloc(p, T.sizeof * newSize))

proc dealloc*(p: pointer) {.noconv, compilerproc, rtl, benign, raises: [], tags: [].} =
## Frees the memory allocated with `alloc`, `alloc0` or
## `realloc`.
## Frees the memory allocated with `alloc`, `alloc0`,
## `realloc`, `create` or `createU`.
##
## **This procedure is dangerous!**
## If one forgets to free the memory a leak occurs; if one tries to
Expand Down

0 comments on commit e5be216

Please sign in to comment.