aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/library/gc.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/library/gc.rst b/docs/library/gc.rst
index c823aed3e..2ba204e22 100644
--- a/docs/library/gc.rst
+++ b/docs/library/gc.rst
@@ -24,7 +24,7 @@ Functions
.. function:: mem_alloc()
- Return the number of bytes of heap RAM that are allocated.
+ Return the number of bytes of heap RAM that are allocated by Python code.
.. admonition:: Difference to CPython
:class: attention
@@ -33,8 +33,8 @@ Functions
.. function:: mem_free()
- Return the number of bytes of available heap RAM, or -1 if this amount
- is not known.
+ Return the number of bytes of heap RAM that is available for Python
+ code to allocate, or -1 if this amount is not known.
.. admonition:: Difference to CPython
:class: attention