diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-03-27 02:57:23 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-03-27 02:57:23 (GMT) |
commit | ede001a8328144e6ed58deda3dd3bb3bedc2c2b5 (patch) | |
tree | 4afae401c9a714128f51c000b391567f7394cbf5 /Doc | |
parent | 8486076dd53ff5628cea35935295eb3b0ad0b0da (diff) | |
download | cpython-ede001a8328144e6ed58deda3dd3bb3bedc2c2b5.zip cpython-ede001a8328144e6ed58deda3dd3bb3bedc2c2b5.tar.gz cpython-ede001a8328144e6ed58deda3dd3bb3bedc2c2b5.tar.bz2 |
Fix doc typo noticed by Amaury Forgeot d'Arc
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/xml.etree.elementtree.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index c373894..86fe4e6 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -126,7 +126,7 @@ Supported XPath syntax | | a relative path. | +-----------------------+------------------------------------------------------+ | ``//`` | Selects all subelements, on all levels beneath the | -| | current element. For example, ``./egg`` selects | +| | current element. For example, ``.//egg`` selects | | | all ``egg`` elements in the entire tree. | +-----------------------+------------------------------------------------------+ | ``..`` | Selects the parent element. | |