From 03c4bb4abc3bd8120ba3e5ea493447be2ad57711 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 18 Jun 2010 03:16:35 +0800 Subject: [PATCH] Typo fix. --- docs/unicode.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/unicode.rst b/docs/unicode.rst index d439797e..e9259d12 100644 --- a/docs/unicode.rst +++ b/docs/unicode.rst @@ -51,7 +51,7 @@ unicode. What does working with unicode in Python 2.x mean? (like ``u'Hänsel und Gretel'``) - if you are using non-unicode characters in your Python files you have to tell Python which encoding your file uses. Again, I recommend - UTF-8 for this purpose. To tell the interpreter yuor encoding you can + UTF-8 for this purpose. To tell the interpreter your encoding you can put the ``# -*- coding: utf-8 -*-`` into the first or second line of your Python source file.