summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Wilk <jwilk@jwilk.net>2017-02-14 23:43:27 +0100
committerJakub Wilk <jwilk@jwilk.net>2017-02-14 23:43:27 +0100
commit3643d0fa361cad9bf81405d9e542db953659fb1d (patch)
treed37c047358cc217522e936b452757eb294c25153
parent33e57c51c23cf9227f9ad29828ad0cd5f6974981 (diff)
downloadpython-lxml-3643d0fa361cad9bf81405d9e542db953659fb1d.tar.gz
fix typos
-rw-r--r--CHANGES.txt4
-rw-r--r--doc/lxmlhtml.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c81f753b..fada054b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1210,7 +1210,7 @@ Bugs fixed
previously worked in 2.3.1.
* Fixed parsing of some selectors in cssselect. Whitespace after combinators
- ">", "+" and "~" is now correctly ignored. Previously is was parsed as
+ ">", "+" and "~" is now correctly ignored. Previously it was parsed as
a descendant combinator. For example, "div> .foo" was parsed the same as
"div>* .foo" instead of "div>.foo". Patch by Simon Sapin.
@@ -2907,7 +2907,7 @@ Features added
* ``ElementMaker`` XML generator by Fredrik Lundh in ``lxml.builder.E``
-* Support for pickeling ``objectify.ObjectifiedElement`` objects to XML
+* Support for pickling ``objectify.ObjectifiedElement`` objects to XML
* ``update()`` method on Element.attrib
diff --git a/doc/lxmlhtml.txt b/doc/lxmlhtml.txt
index 93bb0c27..cc59d97a 100644
--- a/doc/lxmlhtml.txt
+++ b/doc/lxmlhtml.txt
@@ -178,7 +178,7 @@ most easily used by importing the ``usedoctest`` module in a doctest:
>>> import lxml.html.usedoctest
-Now, if you have a HTML document and want to compare it to an expected result
+Now, if you have an HTML document and want to compare it to an expected result
document in a doctest, you can do the following:
.. sourcecode:: pycon