]> granicus.if.org Git - python/commitdiff
Closes #26444: typo fixes.
authorGeorg Brandl <georg@python.org>
Fri, 26 Feb 2016 18:13:47 +0000 (19:13 +0100)
committerGeorg Brandl <georg@python.org>
Fri, 26 Feb 2016 18:13:47 +0000 (19:13 +0100)
Doc/library/xml.etree.elementtree.rst

index dc0274eb0bfe431ab7a154399d5a351758aed717..fe7ad9841ae50a1fa9de6aee25f7d3bc32a7e103 100644 (file)
@@ -1044,16 +1044,16 @@ XMLParser Objects
 
    This class is the low-level building block of the module.  It uses
    :mod:`xml.parsers.expat` for efficient, event-based parsing of XML.  It can
-   be fed XML data incrementall with the :meth:`feed` method, and parsing events
-   are translated to a push API - by invoking callbacks on the *target* object.
-   If *target* is omitted, the standard :class:`TreeBuilder` is used.  The
-   *html* argument was historically used for backwards compatibility and is now
-   deprecated.  If *encoding* [1]_ is given, the value overrides the encoding
-   specified in the XML file.
+   be fed XML data incrementally with the :meth:`feed` method, and parsing
+   events are translated to a push API - by invoking callbacks on the *target*
+   object.  If *target* is omitted, the standard :class:`TreeBuilder` is used.
+   The *html* argument was historically used for backwards compatibility and is
+   now deprecated.  If *encoding* [1]_ is given, the value overrides the
+   encoding specified in the XML file.
 
    .. deprecated:: 3.4
       The *html* argument.  The remaining arguments should be passed via
-      keywword to prepare for the removal of the *html* argument.
+      keyword to prepare for the removal of the *html* argument.
 
    .. method:: close()