summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libformatter.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-02-13 14:48:00 (GMT)
committerFred Drake <fdrake@acm.org>1998-02-13 14:48:00 (GMT)
commitc9c456ef696cf7dce282b18842d4b6db830f94d0 (patch)
tree56e3aac010b3259021a17ce633d5c350e826cdf1 /Doc/lib/libformatter.tex
parent7f6e2c45eca4392cb111e0f40186b1908cf7a1f5 (diff)
downloadcpython-c9c456ef696cf7dce282b18842d4b6db830f94d0.zip
cpython-c9c456ef696cf7dce282b18842d4b6db830f94d0.tar.gz
cpython-c9c456ef696cf7dce282b18842d4b6db830f94d0.tar.bz2
In add_label_data() description, use "\samp{}" instead of "``\code{...}''"
to indicate the interpreted letters from the format string.
Diffstat (limited to 'Doc/lib/libformatter.tex')
-rw-r--r--Doc/lib/libformatter.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libformatter.tex b/Doc/lib/libformatter.tex
index 1a5150d..94cd6d6 100644
--- a/Doc/lib/libformatter.tex
+++ b/Doc/lib/libformatter.tex
@@ -104,10 +104,10 @@ Format specifications are strings which, in combination with a counter
value, are used to compute label values. Each character in the format
string is copied to the label value, with some characters recognized
to indicate a transform on the counter value. Specifically, the
-character ``\code{1}'' represents the counter value formatter as an
-arabic number, the characters ``\code{A}'' and ``\code{a}'' represent
+character \samp{1} represents the counter value formatter as an
+arabic number, the characters \samp{A} and \samp{a} represent
alphabetic representations of the counter value in upper and lower
-case, respectively, and ``\code{I}'' and ``\code{i}'' represent the
+case, respectively, and \samp{I} and \samp{i} represent the
counter value in Roman numerals, in upper and lower case. Note that
the alphabetic and roman transforms require that the counter value be
greater than zero.