summaryrefslogtreecommitdiffstats
path: root/Doc/libtime.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-11-25 01:00:40 (GMT)
committerGuido van Rossum <guido@python.org>1997-11-25 01:00:40 (GMT)
commitf259efe3d96009c61a9a1fad355dfbf1055ad8af (patch)
tree6480a7229a07287bb4ffbfac77d0913aadd8923a /Doc/libtime.tex
parent3e1e274d0b16bab5fd27a7d418863be8d3093466 (diff)
downloadcpython-f259efe3d96009c61a9a1fad355dfbf1055ad8af.zip
cpython-f259efe3d96009c61a9a1fad355dfbf1055ad8af.tar.gz
cpython-f259efe3d96009c61a9a1fad355dfbf1055ad8af.tar.bz2
Get rid of math mode in some places.
Diffstat (limited to 'Doc/libtime.tex')
-rw-r--r--Doc/libtime.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/libtime.tex b/Doc/libtime.tex
index e352505..74e8104 100644
--- a/Doc/libtime.tex
+++ b/Doc/libtime.tex
@@ -48,8 +48,8 @@ integers: year (e.g.\ 1993), month (1--12), day (1--31), hour
(0--23), minute (0--59), second (0--59), weekday (0--6, monday is 0),
Julian day (1--366) and daylight savings flag (-1, 0 or 1).
Note that unlike the C structure, the month value is a range of 1-12, not
-0-11. A year value of $<$ 100 will typically be silently converted to
-1900 $+$ year value. A -1 argument as daylight savings flag, passed to
+0-11. A year value less than 100 will typically be silently converted to
+1900 plus the year value. A -1 argument as daylight savings flag, passed to
\code{mktime()} will usually result in the correct daylight savings
state to be filled in.