From cf2636696dddb32302993860d20e788fa92d9734 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sat, 3 Feb 2001 14:35:38 +0000 Subject: [PATCH] Fix markup typo in a {verbatim} environment (there should not be any!); caught by Eric Raymond. --- Doc/lib/libtime.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/lib/libtime.tex b/Doc/lib/libtime.tex index 8ff36eddf32..c3f62ed7bcb 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}