summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-04-13 14:34:58 (GMT)
committerFred Drake <fdrake@acm.org>2001-04-13 14:34:58 (GMT)
commita3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3 (patch)
tree2951c6d32abe05ca2fe84761c2c4a7771d074610 /Doc/lib
parent022171fa2195e5958d678605457b0f8741dd901d (diff)
downloadcpython-a3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3.zip
cpython-a3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3.tar.gz
cpython-a3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3.tar.bz2
Minor markup adjustments.
Turn reference to the cmd module into a hyperlink.
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libprofile.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libprofile.tex b/Doc/lib/libprofile.tex
index f206a16..a8861c3 100644
--- a/Doc/lib/libprofile.tex
+++ b/Doc/lib/libprofile.tex
@@ -222,14 +222,14 @@ p.add('fooprof')
Invoked as a script, the \module{pstats} module is a statistics
browser for reading and examining profile dumps. It has a simple
-line-oriented interface (implemented using \module{cmd}) and
+line-oriented interface (implemented using \refmodule{cmd}) and
interactive help.
\section{What Is Deterministic Profiling?}
\nodename{Deterministic Profiling}
\dfn{Deterministic profiling} is meant to reflect the fact that all
-\dfn{function call}, \dfn{function return}, and \dfn{exception} events
+\emph{function call}, \emph{function return}, and \emph{exception} events
are monitored, and precise timings are made for the intervals between
these events (during which time the user's code is executing). In
contrast, \dfn{statistical profiling} (which is not done by this