summaryrefslogtreecommitdiffstats
path: root/Doc/libfuncs.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-01-14 14:51:31 (GMT)
committerFred Drake <fdrake@acm.org>1998-01-14 14:51:31 (GMT)
commitaf8a015c937d11e4efcda3f91344ad3e758d26e8 (patch)
tree5e342ee84e829d81f408c1c990b66762ee034da3 /Doc/libfuncs.tex
parentb215137224cafcdb665a7b298dbf02be6a214d0c (diff)
downloadcpython-af8a015c937d11e4efcda3f91344ad3e758d26e8.zip
cpython-af8a015c937d11e4efcda3f91344ad3e758d26e8.tar.gz
cpython-af8a015c937d11e4efcda3f91344ad3e758d26e8.tar.bz2
Consistency: "{\bf ...}" ==> "\strong{...}"
"{\em ...}" ==> "\emph{...}" Not at all sure what to do with "{\rm ...}". Leaving it for now.
Diffstat (limited to 'Doc/libfuncs.tex')
-rw-r--r--Doc/libfuncs.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/libfuncs.tex b/Doc/libfuncs.tex
index 36582da..6d1cbce 100644
--- a/Doc/libfuncs.tex
+++ b/Doc/libfuncs.tex
@@ -393,8 +393,8 @@ any kind of sequence; the result is always a list.
\code{fopen()}: \var{filename} is the file name to be opened,
\var{mode} indicates how the file is to be opened: \code{'r'} for
reading, \code{'w'} for writing (truncating an existing file), and
- \code{'a'} opens it for appending (which on {\em some} \UNIX{}
- systems means that {\em all} writes append to the end of the file,
+ \code{'a'} opens it for appending (which on \emph{some} \UNIX{}
+ systems means that \emph{all} writes append to the end of the file,
regardless of the current seek position).
Modes \code{'r+'}, \code{'w+'} and
\code{'a+'} open the file for updating, provided the underlying