[Python-checkins] gh-102994: Profile docs has typo in example (GH-103074)

miss-islington webhook-mailer at python.org
Sun Apr 2 18:52:18 EDT 2023


https://github.com/python/cpython/commit/823622212eb258fcec467db56f6e726d841297b3
commit: 823622212eb258fcec467db56f6e726d841297b3
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2023-04-02T15:52:11-07:00
summary:

gh-102994: Profile docs has typo in example (GH-103074)

(cherry picked from commit 55decb72c4d2e4ea00ed13da5dd0fd22cecb9083)

Co-authored-by: Nouran Ali <nouranalimohammed at gmail.com>

files:
M Doc/library/profile.rst

diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst
index c2189e02656c..723f927135a0 100644
--- a/Doc/library/profile.rst
+++ b/Doc/library/profile.rst
@@ -82,7 +82,7 @@ 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 name``, indicates that the text string in 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:
 
 ncalls



More information about the Python-checkins mailing list