[Python-checkins] cpython: Issue #15586: typo fix. This commit is accompanied by an apology for all

eli.bendersky python-checkins at python.org
Wed Aug 15 13:27:27 CEST 2012


http://hg.python.org/cpython/rev/8d90fde35cc6
changeset:   78583:8d90fde35cc6
parent:      78581:c592e5a8fa4f
user:        Eli Bendersky <eliben at gmail.com>
date:        Wed Aug 15 14:26:30 2012 +0300
summary:
  Issue #15586: typo fix. This commit is accompanied by an apology for all Liechtensteiners out there, and a thanks to Eric Araujo for noticing.

files:
  Doc/library/xml.etree.elementtree.rst |  10 +++++-----
  1 files changed, 5 insertions(+), 5 deletions(-)


diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst
--- a/Doc/library/xml.etree.elementtree.rst
+++ b/Doc/library/xml.etree.elementtree.rst
@@ -41,7 +41,7 @@
 
    <?xml version="1.0"?>
    <data>
-       <country name="Liechtenshtein">
+       <country name="Liechtenstein">
            <rank>1</rank>
            <year>2008</year>
            <gdppc>141100</gdppc>
@@ -89,7 +89,7 @@
    >>> for child in root:
    ...   print(child.tag, child.attrib)
    ...
-   country {'name': 'Liechtenshtein'}
+   country {'name': 'Liechtenstein'}
    country {'name': 'Singapore'}
    country {'name': 'Panama'}
 
@@ -124,7 +124,7 @@
    ...   name = country.get('name')
    ...   print(name, rank)
    ...
-   Liechtenshtein 1
+   Liechtenstein 1
    Singapore 4
    Panama 68
 
@@ -158,7 +158,7 @@
 
    <?xml version="1.0"?>
    <data>
-       <country name="Liechtenshtein">
+       <country name="Liechtenstein">
            <rank updated="yes">2</rank>
            <year>2008</year>
            <gdppc>141100</gdppc>
@@ -196,7 +196,7 @@
 
    <?xml version="1.0"?>
    <data>
-       <country name="Liechtenshtein">
+       <country name="Liechtenstein">
            <rank updated="yes">2</rank>
            <year>2008</year>
            <gdppc>141100</gdppc>

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


More information about the Python-checkins mailing list