summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-19 10:02:49 (GMT)
committerGitHub <noreply@github.com>2023-11-19 10:02:49 (GMT)
commite9a97c3bf9a516607d11904e55f9004710b1493b (patch)
tree9d4a2499452919d2504838af5750b39eda9b5344
parentd065e30b00cc4ba3db33c45563341a33588e7bb9 (diff)
downloadcpython-e9a97c3bf9a516607d11904e55f9004710b1493b.zip
cpython-e9a97c3bf9a516607d11904e55f9004710b1493b.tar.gz
cpython-e9a97c3bf9a516607d11904e55f9004710b1493b.tar.bz2
[3.11] gh-110383: Fix documentation profile cumtime fix (GH-112221) (#112263)
Co-authored-by: Alex Ptakhin <me@aptakhin.name> 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.