diff options
author | Fred Drake <fdrake@acm.org> | 1998-01-14 14:51:31 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-01-14 14:51:31 (GMT) |
commit | af8a015c937d11e4efcda3f91344ad3e758d26e8 (patch) | |
tree | 5e342ee84e829d81f408c1c990b66762ee034da3 /Doc/libcopy.tex | |
parent | b215137224cafcdb665a7b298dbf02be6a214d0c (diff) | |
download | cpython-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/libcopy.tex')
-rw-r--r-- | Doc/libcopy.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/libcopy.tex b/Doc/libcopy.tex index d07121e..60a5b42 100644 --- a/Doc/libcopy.tex +++ b/Doc/libcopy.tex @@ -25,13 +25,13 @@ class instances): \begin{itemize} \item -A {\em shallow copy} constructs a new compound object and then (to the -extent possible) inserts {\em references} into it to the objects found +A \emph{shallow copy} constructs a new compound object and then (to the +extent possible) inserts \emph{references} into it to the objects found in the original. \item -A {\em deep copy} constructs a new compound object and then, -recursively, inserts {\em copies} into it of the objects found in the +A \emph{deep copy} constructs a new compound object and then, +recursively, inserts \emph{copies} into it of the objects found in the original. \end{itemize} @@ -46,7 +46,7 @@ Recursive objects (compound objects that, directly or indirectly, contain a reference to themselves) may cause a recursive loop. \item -Because deep copy copies {\em everything} it may copy too much, e.g.\ +Because deep copy copies \emph{everything} it may copy too much, e.g.\ administrative data structures that should be shared even between copies. |