diff options
author | Fred Drake <fdrake@acm.org> | 2001-02-03 14:35:38 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-02-03 14:35:38 (GMT) |
commit | cf2636696dddb32302993860d20e788fa92d9734 (patch) | |
tree | ee1e62288b3c19e961781116096988ccc76c5ad0 /Doc/lib/libtime.tex | |
parent | 40e43bfaf751da939f3702d97f6a68d89ffc0396 (diff) | |
download | cpython-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.
Diffstat (limited to 'Doc/lib/libtime.tex')
-rw-r--r-- | Doc/lib/libtime.tex | 2 |
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} |