summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-02-03 14:35:38 (GMT)
committerFred Drake <fdrake@acm.org>2001-02-03 14:35:38 (GMT)
commitcf2636696dddb32302993860d20e788fa92d9734 (patch)
treeee1e62288b3c19e961781116096988ccc76c5ad0
parent40e43bfaf751da939f3702d97f6a68d89ffc0396 (diff)
downloadcpython-cf2636696dddb32302993860d20e788fa92d9734.zip
cpython-cf2636696dddb32302993860d20e788fa92d9734.tar.gz
cpython-cf2636696dddb32302993860d20e788fa92d9734.tar.bz2
Fix markup typo in a {verbatim} environment (there should not be any!);
caught by Eric Raymond.
-rw-r--r--Doc/lib/libtime.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libtime.tex b/Doc/lib/libtime.tex
index 8ff36ed..c3f62ed 100644
--- a/Doc/lib/libtime.tex
+++ b/Doc/lib/libtime.tex
@@ -235,7 +235,7 @@ in the \rfc{822} Internet email standard.
\begin{verbatim}
>>> from time import *
->>> strftime("\%a, \%d \%b \%Y \%H:\%M:\%S \%Z", localtime())
+>>> strftime("%a, %d %b %Y %H:%M:%S %Z", localtime())
'Sat, 27 Jan 2001 05:15:05 EST'
>>>
\end{verbatim}