diff options
author | Fred Drake <fdrake@acm.org> | 2003-04-22 14:30:53 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-04-22 14:30:53 (GMT) |
commit | 03e929e7e010027917e6dc2716c364313d4833ce (patch) | |
tree | 91d6bf655196d86dfcaf8e6f7f4adf0a67cba5f6 | |
parent | 6432f78215e1dc9a3a929074eccc253bd7d3e738 (diff) | |
download | cpython-03e929e7e010027917e6dc2716c364313d4833ce.zip cpython-03e929e7e010027917e6dc2716c364313d4833ce.tar.gz cpython-03e929e7e010027917e6dc2716c364313d4833ce.tar.bz2 |
Fix some markup nits.
-rw-r--r-- | Doc/tut/tut.tex | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index b227576..f79a183 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -1819,9 +1819,11 @@ item, then to the result and the next item, and so on. For example, 0 \end{verbatim} -Don't use this example's definition of \code{sum}: since summing numbers -is such a common need, a built-in function \code{sum(\var{sequence})} is -already provided, and works exactly like this\versionadded{2,3}. +Don't use this example's definition of \function{sum()}: since summing +numbers is such a common need, a built-in function +\code{sum(\var{sequence})} is already provided, and works exactly like +this. +\versionadded{2.3} \subsection{List Comprehensions} |