diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2017-03-22 08:14:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-22 08:14:17 (GMT) |
commit | d7df9e61c8ea1a7919466f82423bdbb0bfe1df61 (patch) | |
tree | 62f32e7d13770a4f6e5814138f69bcb6b235c104 | |
parent | cb4beb6b89f992b7967ca3e7471d292789385b48 (diff) | |
download | cpython-d7df9e61c8ea1a7919466f82423bdbb0bfe1df61.zip cpython-d7df9e61c8ea1a7919466f82423bdbb0bfe1df61.tar.gz cpython-d7df9e61c8ea1a7919466f82423bdbb0bfe1df61.tar.bz2 |
doc: minor fix for library/profile (GH-767)
(cherry picked from commit bd3d8ba3b22da0bad018b53a3e6610ae03c5aa49)
-rw-r--r-- | Doc/library/profile.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index bd67fe4..b4b1479 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -85,11 +85,11 @@ next line: ``Ordered by: standard name``, indicates that the text string in the far right column was used to sort the output. The column headings include: ncalls - for the number of calls, + for the number of calls. tottime - for the total time spent in the given function (and excluding time made in - calls to sub-functions) + for the total time spent in the given function (and excluding time made in + calls to sub-functions) percall is the quotient of ``tottime`` divided by ``ncalls`` |