From: Fred Drake Date: Sat, 3 Feb 2001 14:35:38 +0000 (+0000) Subject: Fix markup typo in a {verbatim} environment (there should not be any!); X-Git-Tag: v2.1b1~524 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf2636696dddb32302993860d20e788fa92d9734;p=thirdparty%2FPython%2Fcpython.git Fix markup typo in a {verbatim} environment (there should not be any!); caught by Eric Raymond. --- diff --git a/Doc/lib/libtime.tex b/Doc/lib/libtime.tex index 8ff36eddf32c..c3f62ed7bcbf 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}