commit | 657ebef2ae0d6694a22fc58f12ce5105156fd762 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Wed Nov 29 05:51:59 2000 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Wed Nov 29 05:51:59 2000 +0000 |
tree | 6e02449f51a7386176f3e44a318dcb39c782ba5a | |
parent | 4b2b445f28937ae555700c2ac2280eeaa0521245 [diff] |
Partial fix for SF bug 123730: extra backslash in tutorial.
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 87c7a9a..9deb26a 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex
@@ -767,7 +767,7 @@ \emph{Unicode-Escape} encoding. The following example shows how: \begin{verbatim} ->>> u'Hello\\u0020World !' +>>> u'Hello\u0020World !' u'Hello World !' \end{verbatim}