diff options
Diffstat (limited to 'Doc/library/tracemalloc.rst')
-rw-r--r-- | Doc/library/tracemalloc.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst index be716e9..82d997a 100644 --- a/Doc/library/tracemalloc.rst +++ b/Doc/library/tracemalloc.rst @@ -276,8 +276,8 @@ Functions .. function:: get_traced_memory() - Get the current size and maximum size of memory blocks traced by the - :mod:`tracemalloc` module as a tuple: ``(size: int, max_size: int)``. + Get the current size and peak size of memory blocks traced by the + :mod:`tracemalloc` module as a tuple: ``(current: int, peak: int)``. .. function:: get_tracemalloc_memory() |