summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/tut/tut.tex2
1 files changed, 1 insertions, 1 deletions
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 @@ special characters in the string, you can do so by using the Python
\emph{Unicode-Escape} encoding. The following example shows how:
\begin{verbatim}
->>> u'Hello\\u0020World !'
+>>> u'Hello\u0020World !'
u'Hello World !'
\end{verbatim}