Skip to content

Commit 3859a98

Browse files
author
Mark Pilgrim
committed
typos
1 parent 18f9cf5 commit 3859a98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xml.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,13 +459,13 @@ <h2 id=xml-lxml>Going Further With lxml</h2>
459459
&lt;Element {http://www.w3.org/2005/Atom}entry at e2b510>,
460460
&lt;Element {http://www.w3.org/2005/Atom}entry at e2b540>]</samp></pre>
461461
<ol>
462-
<li>Once imported, <code>lxml</code> provides the same <abbr>API</abbr> as the built-in ElementTree libary.
462+
<li>Once imported, <code>lxml</code> provides the same <abbr>API</abbr> as the built-in ElementTree library.
463463
<li><code>parse()</code> function: same as ElementTree.
464464
<li><code>getroot()</code> method: also the same.
465465
<li><code>findall()</code> method: exactly the same.
466466
</ol>
467467

468-
<p>For large <abbr>XML</abbr> documents, <code>lxml</code> is significantly faster than the built-in ElementTree libary. If you&#8217;re only using the ElementTree <abbr>API</abbr> and want to use the fastest available implementation, you can try to import <code>lxml</code> and fall back to the built-in ElementTree.
468+
<p>For large <abbr>XML</abbr> documents, <code>lxml</code> is significantly faster than the built-in ElementTree library. If you&#8217;re only using the ElementTree <abbr>API</abbr> and want to use the fastest available implementation, you can try to import <code>lxml</code> and fall back to the built-in ElementTree.
469469

470470
<pre class='nd pp'><code>try:
471471
from lxml import etree

0 commit comments

Comments
 (0)