diff options
author | Raymond Hettinger <python@rcn.com> | 2014-03-29 18:50:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-03-29 18:50:08 (GMT) |
commit | 1e1e601bd1eb9fc9fee5a1741f4429569bcc4f32 (patch) | |
tree | 22b022499785be81e121b6089a3bc833dbcd2c1f /Doc/library/xml.etree.elementtree.rst | |
parent | c420343c0cb83dc8d343a144a686597598aa03da (diff) | |
download | cpython-1e1e601bd1eb9fc9fee5a1741f4429569bcc4f32.zip cpython-1e1e601bd1eb9fc9fee5a1741f4429569bcc4f32.tar.gz cpython-1e1e601bd1eb9fc9fee5a1741f4429569bcc4f32.tar.bz2 |
Minor readability improvement.
Diffstat (limited to 'Doc/library/xml.etree.elementtree.rst')
-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 c6dbce0..0617371 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -325,7 +325,7 @@ Supported XPath syntax +=======================+======================================================+ | ``tag`` | Selects all child elements with the given tag. | | | For example, ``spam`` selects all child elements | -| | named ``spam``, ``spam/egg`` selects all | +| | named ``spam``, and ``spam/egg`` selects all | | | grandchildren named ``egg`` in all children named | | | ``spam``. | +-----------------------+------------------------------------------------------+ |