typos, layout and other small things
diff --git a/Doc/libprofile.tex b/Doc/libprofile.tex
index 3cd4296..ea2e613 100644
--- a/Doc/libprofile.tex
+++ b/Doc/libprofile.tex
@@ -267,17 +267,19 @@
standard name string (file/line/function-name) that is presented in
each line. The following is a typical output from such a call:
+\small{
\begin{verbatim}
- main()
- 2706 function calls (2004 primitive calls) in 4.504 CPU seconds
+ main()
+ 2706 function calls (2004 primitive calls) in 4.504 CPU seconds
- Ordered by: standard name
+Ordered by: standard name
- ncalls tottime percall cumtime percall filename:lineno(function)
- 2 0.006 0.003 0.953 0.477 pobject.py:75(save_objects)
- 43/3 0.533 0.012 0.749 0.250 pobject.py:99(evaluate)
- ...
+ncalls tottime percall cumtime percall filename:lineno(function)
+ 2 0.006 0.003 0.953 0.477 pobject.py:75(save_objects)
+ 43/3 0.533 0.012 0.749 0.250 pobject.py:99(evaluate)
+ ...
\end{verbatim}
+}
The first line indicates that this profile was generated by the call:\\
\code{profile.run('main()')}, and hence the exec'ed string is
@@ -318,6 +320,7 @@
the actual number of calls. Note that when the function does not
recurse, these two values are the same, and only the single figure is
printed.
+
\end{funcdesc}
\begin{funcdesc}{pstats.Stats}{filename\optional{\, ...}}
@@ -480,7 +483,8 @@
be strung together. For example:
\begin{verbatim}
-pstats.Stats('foofile').strip_dirs().sort_stats('cum').print_stats().ignore()
+pstats.Stats('foofile').strip_dirs().sort_stats('cum') \
+ .print_stats().ignore()
\end{verbatim}
would perform all the indicated functions, but it would not return