summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-05-11 16:32:24 +0000
committerAndrew M. Kuchling <amk@amk.ca>2006-05-11 16:32:24 +0000
commit7cadf59e14d87dbb6a8bfa0b7301f937c03a269c (patch)
tree22a3f1d5d1235a30b1c4176d0ff6c9e9f1154759
parent4917c34b26997dc6a24550f5ffd9ef50fe7b0eb8 (diff)
downloadcpython-git-7cadf59e14d87dbb6a8bfa0b7301f937c03a269c.tar.gz
typo fix
-rw-r--r--Doc/howto/unicode.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
index 0946bdcec1..f92471a3ed 100644
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -158,7 +158,7 @@ that are more efficient and convenient.
Encodings don't have to handle every possible Unicode character, and
most encodings don't. For example, Python's default encoding is the
'ascii' encoding. The rules for converting a Unicode string into the
-ASCII encoding are are simple; for each code point:
+ASCII encoding are simple; for each code point:
1. If the code point is <128, each byte is the same as the value of the
code point.
@@ -721,7 +721,7 @@ Revision History and Acknowledgements
Thanks to the following people who have noted errors or offered
suggestions on this article: Nicholas Bastin,
Marius Gedminas, Kent Johnson, Ken Krugler,
-Marc-André Lemburg, Martin von Löwis.
+Marc-André Lemburg, Martin von Löwis, Chad Whitacre.
Version 1.0: posted August 5 2005.