summaryrefslogtreecommitdiff
path: root/docs/ref/unicode.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/unicode.txt')
-rw-r--r--docs/ref/unicode.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/unicode.txt b/docs/ref/unicode.txt
index 4976a35af9..c5851a2c6c 100644
--- a/docs/ref/unicode.txt
+++ b/docs/ref/unicode.txt
@@ -273,7 +273,7 @@ You can pass either Unicode strings or UTF-8 bytestrings as arguments to
querysets are identical::
qs = People.objects.filter(name__contains=u'Å')
- qs = People.objects.filter(name__contains='\xc3\85') # UTF-8 encoding of Å
+ qs = People.objects.filter(name__contains='\xc3\x85') # UTF-8 encoding of Å
Templates
=========