diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-14 19:32:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-14 19:32:57 (GMT) |
commit | b19542d062603031ab3f4c2f5f485f449ebc46ca (patch) | |
tree | 93f22b3830fa1aa8a5aa9ef4efa4d49ea6f38aa1 /Doc/library/profile.rst | |
parent | 41e7244c062e5acbb10582d12d3a03caa892f435 (diff) | |
download | cpython-b19542d062603031ab3f4c2f5f485f449ebc46ca.zip cpython-b19542d062603031ab3f4c2f5f485f449ebc46ca.tar.gz cpython-b19542d062603031ab3f4c2f5f485f449ebc46ca.tar.bz2 |
Fix minor docs markup errors.
Diffstat (limited to 'Doc/library/profile.rst')
-rw-r--r-- | Doc/library/profile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index f2453f1..6a6c489 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -638,7 +638,7 @@ you are using :class:`profile.Profile` or :class:`cProfile.Profile`, pr = cProfile.Profile(your_integer_time_func, 0.001) - As the :mod:`cProfile.Profile` class cannot be calibrated, custom timer + As the :class:`cProfile.Profile` class cannot be calibrated, custom timer functions should be used with care and should be as fast as possible. For the best results with a custom timer, it might be necessary to hard-code it in the C source of the internal :mod:`_lsprof` module. |