[Python-checkins] cpython (3.2): #13715: fix typo in unicodedata doc. Patch by Eli Collins.

ezio.melotti python-checkins at python.org
Mon Jan 16 07:46:19 CET 2012


http://hg.python.org/cpython/rev/f50ff6dd6b41
changeset:   74434:f50ff6dd6b41
branch:      3.2
parent:      74431:bff9ab281385
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Mon Jan 16 08:42:32 2012 +0200
summary:
  #13715: fix typo in unicodedata doc.  Patch by Eli Collins.

files:
  Doc/library/unicodedata.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst
--- a/Doc/library/unicodedata.rst
+++ b/Doc/library/unicodedata.rst
@@ -105,7 +105,7 @@
    based on the definition of canonical equivalence and compatibility equivalence.
    In Unicode, several characters can be expressed in various way. For example, the
    character U+00C7 (LATIN CAPITAL LETTER C WITH CEDILLA) can also be expressed as
-   the sequence U+0327 (COMBINING CEDILLA) U+0043 (LATIN CAPITAL LETTER C).
+   the sequence U+0043 (LATIN CAPITAL LETTER C) U+0327 (COMBINING CEDILLA).
 
    For each character, there are two normal forms: normal form C and normal form D.
    Normal form D (NFD) is also known as canonical decomposition, and translates

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list