summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Ptakhin <me@aptakhin.name>2023-11-19 09:56:54 (GMT)
committerGitHub <noreply@github.com>2023-11-19 09:56:54 (GMT)
commit6bf8f20344333af70acb566998d3e9f44c889555 (patch)
tree95dfc8b136d964ed85d4b9c2c4b22543da67f5f0
parent14fd86a59d0d91fe72641efeb14a59d99127dec3 (diff)
downloadcpython-6bf8f20344333af70acb566998d3e9f44c889555.zip
cpython-6bf8f20344333af70acb566998d3e9f44c889555.tar.gz
cpython-6bf8f20344333af70acb566998d3e9f44c889555.tar.bz2
gh-110383: Fix documentation profile cumtime fix (#112221)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-rw-r--r--Doc/library/profile.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst
index 4c60a1e..cc059b6 100644
--- a/Doc/library/profile.rst
+++ b/Doc/library/profile.rst
@@ -82,8 +82,8 @@ the following::
The first line indicates that 214 calls were monitored. Of those calls, 207
were :dfn:`primitive`, meaning that the call was not induced via recursion. The
-next line: ``Ordered by: cumulative time``, indicates that the text string in the
-far right column was used to sort the output. The column headings include:
+next line: ``Ordered by: cumulative time`` indicates the output is sorted
+by the ``cumtime`` values. The column headings include:
ncalls
for the number of calls.